diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-27 08:45:38 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-04 06:43:44 -0400 |
| commit | 37e12df709f09eac17314d79a52190ac46746e33 (patch) | |
| tree | 78159578101faddef22c5b13ccc200542cb3d2b6 /kernel/irq/chip.c | |
| parent | bc310dda41be6439364c8f3b9fe7c9d743d22b1c (diff) | |
genirq: Provide compat handling for chip->startup()
Wrap the old chip function startup() until the migration is complete and
the old chip functions are removed.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <20100927121842.635152961@linutronix.de>
Reviewed-by: H. Peter Anvin <hpa@zytor.com>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq/chip.c')
| -rw-r--r-- | kernel/irq/chip.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index b8a47f0a26cc..cce85f0734b0 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c | |||
| @@ -305,11 +305,11 @@ static void default_disable(struct irq_data *data) | |||
| 305 | /* | 305 | /* |
| 306 | * default startup function | 306 | * default startup function |
| 307 | */ | 307 | */ |
| 308 | static unsigned int default_startup(unsigned int irq) | 308 | static unsigned int default_startup(struct irq_data *data) |
| 309 | { | 309 | { |
| 310 | struct irq_desc *desc = irq_to_desc(irq); | 310 | struct irq_desc *desc = irq_data_to_desc(data); |
| 311 | 311 | ||
| 312 | desc->irq_data.chip->irq_enable(&desc->irq_data); | 312 | desc->irq_data.chip->irq_enable(data); |
| 313 | return 0; | 313 | return 0; |
| 314 | } | 314 | } |
| 315 | 315 | ||
| @@ -365,6 +365,11 @@ static void compat_irq_shutdown(struct irq_data *data) | |||
| 365 | data->chip->shutdown(data->irq); | 365 | data->chip->shutdown(data->irq); |
| 366 | } | 366 | } |
| 367 | 367 | ||
| 368 | static unsigned int compat_irq_startup(struct irq_data *data) | ||
| 369 | { | ||
| 370 | return data->chip->startup(data->irq); | ||
| 371 | } | ||
| 372 | |||
| 368 | static void compat_bus_lock(struct irq_data *data) | 373 | static void compat_bus_lock(struct irq_data *data) |
| 369 | { | 374 | { |
| 370 | data->chip->bus_lock(data->irq); | 375 | data->chip->bus_lock(data->irq); |
| @@ -390,6 +395,8 @@ void irq_chip_set_defaults(struct irq_chip *chip) | |||
| 390 | chip->irq_disable = compat_irq_disable; | 395 | chip->irq_disable = compat_irq_disable; |
| 391 | if (chip->shutdown) | 396 | if (chip->shutdown) |
| 392 | chip->irq_shutdown = compat_irq_shutdown; | 397 | chip->irq_shutdown = compat_irq_shutdown; |
| 398 | if (chip->startup) | ||
| 399 | chip->irq_startup = compat_irq_startup; | ||
| 393 | 400 | ||
| 394 | /* | 401 | /* |
| 395 | * The real defaults | 402 | * The real defaults |
| @@ -398,8 +405,8 @@ void irq_chip_set_defaults(struct irq_chip *chip) | |||
| 398 | chip->irq_enable = default_enable; | 405 | chip->irq_enable = default_enable; |
| 399 | if (!chip->irq_disable) | 406 | if (!chip->irq_disable) |
| 400 | chip->irq_disable = default_disable; | 407 | chip->irq_disable = default_disable; |
| 401 | if (!chip->startup) | 408 | if (!chip->irq_startup) |
| 402 | chip->startup = default_startup; | 409 | chip->irq_startup = default_startup; |
| 403 | /* | 410 | /* |
| 404 | * We use chip->irq_disable, when the user provided its own. When | 411 | * We use chip->irq_disable, when the user provided its own. When |
| 405 | * we have default_disable set for chip->irq_disable, then we need | 412 | * we have default_disable set for chip->irq_disable, then we need |
| @@ -786,7 +793,7 @@ __set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained, | |||
| 786 | desc->status &= ~IRQ_DISABLED; | 793 | desc->status &= ~IRQ_DISABLED; |
| 787 | desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE; | 794 | desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE; |
| 788 | desc->depth = 0; | 795 | desc->depth = 0; |
| 789 | desc->irq_data.chip->startup(irq); | 796 | desc->irq_data.chip->irq_startup(&desc->irq_data); |
| 790 | } | 797 | } |
| 791 | raw_spin_unlock_irqrestore(&desc->lock, flags); | 798 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
| 792 | chip_bus_sync_unlock(desc); | 799 | chip_bus_sync_unlock(desc); |
