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