aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/manage.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r--kernel/irq/manage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index a400db220cf3..b1b4da9446e6 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -434,7 +434,7 @@ static int set_irq_wake_real(unsigned int irq, unsigned int on)
434} 434}
435 435
436/** 436/**
437 * set_irq_wake - control irq power management wakeup 437 * irq_set_irq_wake - control irq power management wakeup
438 * @irq: interrupt to control 438 * @irq: interrupt to control
439 * @on: enable/disable power management wakeup 439 * @on: enable/disable power management wakeup
440 * 440 *
@@ -445,7 +445,7 @@ static int set_irq_wake_real(unsigned int irq, unsigned int on)
445 * Wakeup mode lets this IRQ wake the system from sleep 445 * Wakeup mode lets this IRQ wake the system from sleep
446 * states like "suspend to RAM". 446 * states like "suspend to RAM".
447 */ 447 */
448int set_irq_wake(unsigned int irq, unsigned int on) 448int irq_set_irq_wake(unsigned int irq, unsigned int on)
449{ 449{
450 struct irq_desc *desc = irq_to_desc(irq); 450 struct irq_desc *desc = irq_to_desc(irq);
451 unsigned long flags; 451 unsigned long flags;
@@ -480,7 +480,7 @@ int set_irq_wake(unsigned int irq, unsigned int on)
480 chip_bus_sync_unlock(desc); 480 chip_bus_sync_unlock(desc);
481 return ret; 481 return ret;
482} 482}
483EXPORT_SYMBOL(set_irq_wake); 483EXPORT_SYMBOL(irq_set_irq_wake);
484 484
485/* 485/*
486 * Internal function that tells the architecture code whether a 486 * Internal function that tells the architecture code whether a