diff options
author | Jochen Friedrich <jochen@scram.de> | 2011-11-19 13:26:37 -0500 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2011-11-24 17:20:57 -0500 |
commit | 629bcb4b72d49b3631ae3dd0fe1d345820fadfcc (patch) | |
tree | dc3115244e9ee4ffb2cc192e19911abccd58bed3 /drivers/power | |
parent | caca6a03d365883564885f2c1da3e88dcf65d139 (diff) |
collie_battery: Get rid of irq_to_gpio usage
Since 9d08d5d77a355510c2f5657c86b0a4b25acfe72c, irq_to_gpio() is no
longer available but still in use by collie_battery.c. As it's just
for a debug message, just get rid of this call.
Signed-off-by: Jochen Friedrich <jochen@scram.de>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/collie_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/collie_battery.c b/drivers/power/collie_battery.c index 548d263b1ad0..7a40fce4c3cf 100644 --- a/drivers/power/collie_battery.c +++ b/drivers/power/collie_battery.c | |||
@@ -146,7 +146,7 @@ static void collie_bat_external_power_changed(struct power_supply *psy) | |||
146 | 146 | ||
147 | static irqreturn_t collie_bat_gpio_isr(int irq, void *data) | 147 | static irqreturn_t collie_bat_gpio_isr(int irq, void *data) |
148 | { | 148 | { |
149 | pr_info("collie_bat_gpio irq: %d\n", gpio_get_value(irq_to_gpio(irq))); | 149 | pr_info("collie_bat_gpio irq\n"); |
150 | schedule_work(&bat_work); | 150 | schedule_work(&bat_work); |
151 | return IRQ_HANDLED; | 151 | return IRQ_HANDLED; |
152 | } | 152 | } |