pda_power: clean up irq, timer

Clean up pda_power interrupt handling:

Prior to this patch, the driver would pass information it needed
to the interrupt handler dev_id pointer, and then prompt forget it
ever did so, recreating that same information after a couple passes
through the timer-based state machine.

This patch removes the redundant checks by passing the
pda_power_supply[] pointer through the state machine. The current
code passed 'irq' through the state machine, as an index to recreate
the pointer, when we could more simply pass around the pointer itself.

This patch makes it easier to remove the 'irq' argument in the future,
in addition to cleaning up the driver today.

Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Jeff Garzik and committed by Anton Vorontsov 5ebf6e6a 3be86148

+8 -9
+8 -9
drivers/power/pda_power.c
··· 101 101 return; 102 102 } 103 103 104 - static void supply_timer_func(unsigned long irq) 104 + static void supply_timer_func(unsigned long power_supply_ptr) 105 105 { 106 - if (ac_irq && irq == ac_irq->start) 107 - power_supply_changed(&pda_power_supplies[0]); 108 - else if (usb_irq && irq == usb_irq->start) 109 - power_supply_changed(&pda_power_supplies[1]); 106 + void *power_supply = (void *)power_supply_ptr; 107 + 108 + power_supply_changed(power_supply); 110 109 return; 111 110 } 112 111 113 - static void charger_timer_func(unsigned long irq) 112 + static void charger_timer_func(unsigned long power_supply_ptr) 114 113 { 115 114 update_charger(); 116 115 117 116 /* Okay, charger set. Now wait a bit before notifying supplicants, 118 117 * charge power should stabilize. */ 119 - supply_timer.data = irq; 118 + supply_timer.data = power_supply_ptr; 120 119 mod_timer(&supply_timer, 121 120 jiffies + msecs_to_jiffies(pdata->wait_for_charger)); 122 121 return; 123 122 } 124 123 125 - static irqreturn_t power_changed_isr(int irq, void *unused) 124 + static irqreturn_t power_changed_isr(int irq, void *power_supply) 126 125 { 127 126 /* Wait a bit before reading ac/usb line status and setting charger, 128 127 * because ac/usb status readings may lag from irq. */ 129 - charger_timer.data = irq; 128 + charger_timer.data = (unsigned long)power_supply; 130 129 mod_timer(&charger_timer, 131 130 jiffies + msecs_to_jiffies(pdata->wait_for_status)); 132 131 return IRQ_HANDLED;