aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2010-09-27 08:45:47 -0400
committerThomas Gleixner <tglx@linutronix.de>2010-10-04 06:43:47 -0400
commitb2ba2c30033c10cca2454f8b44bf98f5249e61c6 (patch)
treea168cbcd1314f76edccecd5984d75793773b5239 /kernel/irq
parentc96b3b3c448592a0b87ef20306deb8b1fb4878c7 (diff)
genirq: Provide compat handling for chip->set_type()
Wrap the old chip function set_type() 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.832261548@linutronix.de> Reviewed-by: H. Peter Anvin <hpa@zytor.com> Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq')
-rw-r--r--kernel/irq/autoprobe.c5
-rw-r--r--kernel/irq/chip.c7
-rw-r--r--kernel/irq/manage.c10
3 files changed, 15 insertions, 7 deletions
diff --git a/kernel/irq/autoprobe.c b/kernel/irq/autoprobe.c
index 7a468254e533..505798f86c36 100644
--- a/kernel/irq/autoprobe.c
+++ b/kernel/irq/autoprobe.c
@@ -57,8 +57,9 @@ unsigned long probe_irq_on(void)
57 * Some chips need to know about probing in 57 * Some chips need to know about probing in
58 * progress: 58 * progress:
59 */ 59 */
60 if (desc->irq_data.chip->set_type) 60 if (desc->irq_data.chip->irq_set_type)
61 desc->irq_data.chip->set_type(i, IRQ_TYPE_PROBE); 61 desc->irq_data.chip->irq_set_type(&desc->irq_data,
62 IRQ_TYPE_PROBE);
62 desc->irq_data.chip->irq_startup(&desc->irq_data); 63 desc->irq_data.chip->irq_startup(&desc->irq_data);
63 } 64 }
64 raw_spin_unlock_irq(&desc->lock); 65 raw_spin_unlock_irq(&desc->lock);
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index df51792d9fd3..b7dd02a99c80 100644
--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -376,6 +376,11 @@ static int compat_irq_set_affinity(struct irq_data *data,
376 return data->chip->set_affinity(data->irq, dest); 376 return data->chip->set_affinity(data->irq, dest);
377} 377}
378 378
379static int compat_irq_set_type(struct irq_data *data, unsigned int type)
380{
381 return data->chip->set_type(data->irq, type);
382}
383
379static void compat_bus_lock(struct irq_data *data) 384static void compat_bus_lock(struct irq_data *data)
380{ 385{
381 data->chip->bus_lock(data->irq); 386 data->chip->bus_lock(data->irq);
@@ -444,6 +449,8 @@ void irq_chip_set_defaults(struct irq_chip *chip)
444 chip->irq_eoi = compat_irq_eoi; 449 chip->irq_eoi = compat_irq_eoi;
445 if (chip->set_affinity) 450 if (chip->set_affinity)
446 chip->irq_set_affinity = compat_irq_set_affinity; 451 chip->irq_set_affinity = compat_irq_set_affinity;
452 if (chip->set_type)
453 chip->irq_set_type = compat_irq_set_type;
447} 454}
448 455
449static inline void mask_ack_irq(struct irq_desc *desc) 456static inline void mask_ack_irq(struct irq_desc *desc)
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 305a60ff756b..3618362b3d8d 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -430,12 +430,12 @@ void compat_irq_chip_set_default_handler(struct irq_desc *desc)
430} 430}
431 431
432int __irq_set_trigger(struct irq_desc *desc, unsigned int irq, 432int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
433 unsigned long flags) 433 unsigned long flags)
434{ 434{
435 int ret; 435 int ret;
436 struct irq_chip *chip = desc->irq_data.chip; 436 struct irq_chip *chip = desc->irq_data.chip;
437 437
438 if (!chip || !chip->set_type) { 438 if (!chip || !chip->irq_set_type) {
439 /* 439 /*
440 * IRQF_TRIGGER_* but the PIC does not support multiple 440 * IRQF_TRIGGER_* but the PIC does not support multiple
441 * flow-types? 441 * flow-types?
@@ -446,11 +446,11 @@ int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
446 } 446 }
447 447
448 /* caller masked out all except trigger mode flags */ 448 /* caller masked out all except trigger mode flags */
449 ret = chip->set_type(irq, flags); 449 ret = chip->irq_set_type(&desc->irq_data, flags);
450 450
451 if (ret) 451 if (ret)
452 pr_err("setting trigger mode %d for irq %u failed (%pF)\n", 452 pr_err("setting trigger mode %lu for irq %u failed (%pF)\n",
453 (int)flags, irq, chip->set_type); 453 flags, irq, chip->irq_set_type);
454 else { 454 else {
455 if (flags & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) 455 if (flags & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
456 flags |= IRQ_LEVEL; 456 flags |= IRQ_LEVEL;