diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-12-28 06:58:06 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-01-12 13:46:47 -0500 |
commit | 9505ec0825a09ea97426d026f2524d1cefa83a84 (patch) | |
tree | fc0697c64862a2d7da8742bb36c086f8f41db4c2 | |
parent | 57f7c0370f386d5e0960e25d2c3ceb0b8e8c489d (diff) |
ia64: rename nop->iosapic_nop
asm-generic/barrier.h defines a nop() macro.
To be able to use this header on ia64, we shouldn't
call local functions/variables nop().
There's one instance where this breaks on ia64:
rename the function to iosapic_nop to avoid the conflict.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
-rw-r--r-- | arch/ia64/kernel/iosapic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/kernel/iosapic.c b/arch/ia64/kernel/iosapic.c index d2fae054d988..90fde5b8669d 100644 --- a/arch/ia64/kernel/iosapic.c +++ b/arch/ia64/kernel/iosapic.c | |||
@@ -256,7 +256,7 @@ set_rte (unsigned int gsi, unsigned int irq, unsigned int dest, int mask) | |||
256 | } | 256 | } |
257 | 257 | ||
258 | static void | 258 | static void |
259 | nop (struct irq_data *data) | 259 | iosapic_nop (struct irq_data *data) |
260 | { | 260 | { |
261 | /* do nothing... */ | 261 | /* do nothing... */ |
262 | } | 262 | } |
@@ -415,7 +415,7 @@ iosapic_unmask_level_irq (struct irq_data *data) | |||
415 | #define iosapic_shutdown_level_irq mask_irq | 415 | #define iosapic_shutdown_level_irq mask_irq |
416 | #define iosapic_enable_level_irq unmask_irq | 416 | #define iosapic_enable_level_irq unmask_irq |
417 | #define iosapic_disable_level_irq mask_irq | 417 | #define iosapic_disable_level_irq mask_irq |
418 | #define iosapic_ack_level_irq nop | 418 | #define iosapic_ack_level_irq iosapic_nop |
419 | 419 | ||
420 | static struct irq_chip irq_type_iosapic_level = { | 420 | static struct irq_chip irq_type_iosapic_level = { |
421 | .name = "IO-SAPIC-level", | 421 | .name = "IO-SAPIC-level", |
@@ -453,7 +453,7 @@ iosapic_ack_edge_irq (struct irq_data *data) | |||
453 | } | 453 | } |
454 | 454 | ||
455 | #define iosapic_enable_edge_irq unmask_irq | 455 | #define iosapic_enable_edge_irq unmask_irq |
456 | #define iosapic_disable_edge_irq nop | 456 | #define iosapic_disable_edge_irq iosapic_nop |
457 | 457 | ||
458 | static struct irq_chip irq_type_iosapic_edge = { | 458 | static struct irq_chip irq_type_iosapic_edge = { |
459 | .name = "IO-SAPIC-edge", | 459 | .name = "IO-SAPIC-edge", |