From: Keir Fraser Date: Fri, 28 Nov 2008 13:28:16 +0000 (+0000) Subject: x86: remove unused parameter/arguments from flush_ready_eoi() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14040^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=272ec2ee7d7d4d19595295b327399daddfc11080;p=xen.git x86: remove unused parameter/arguments from flush_ready_eoi() Signed-off-by: Jan Beulich --- diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c index a27f1c1b10..e2c6453773 100644 --- a/xen/arch/x86/irq.c +++ b/xen/arch/x86/irq.c @@ -351,7 +351,7 @@ irq_desc_t *domain_spin_lock_irq_desc( } /* Flush all ready EOIs from the top of this CPU's pending-EOI stack. */ -static void flush_ready_eoi(void *unused) +static void flush_ready_eoi(void) { struct pending_eoi *peoi = this_cpu(pending_eoi); irq_desc_t *desc; @@ -405,7 +405,7 @@ static void set_eoi_ready(void *data) __set_eoi_ready(desc); spin_unlock(&desc->lock); - flush_ready_eoi(NULL); + flush_ready_eoi(); } static void __pirq_guest_eoi(struct domain *d, int irq) @@ -453,7 +453,7 @@ static void __pirq_guest_eoi(struct domain *d, int irq) { __set_eoi_ready(desc); spin_unlock(&desc->lock); - flush_ready_eoi(NULL); + flush_ready_eoi(); local_irq_enable(); } else @@ -1100,6 +1100,6 @@ void fixup_irqs(cpumask_t map) peoi = this_cpu(pending_eoi); for ( sp = 0; sp < pending_eoi_sp(peoi); sp++ ) peoi[sp].ready = 1; - flush_ready_eoi(NULL); + flush_ready_eoi(); } #endif