aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-pxa/sharpsl_pm.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/sharpsl_pm.c b/arch/arm/mach-pxa/sharpsl_pm.c
index a8facf476fa4..dfac7b9a7352 100644
--- a/arch/arm/mach-pxa/sharpsl_pm.c
+++ b/arch/arm/mach-pxa/sharpsl_pm.c
@@ -23,6 +23,7 @@
23#include <linux/delay.h> 23#include <linux/delay.h>
24#include <linux/leds.h> 24#include <linux/leds.h>
25#include <linux/suspend.h> 25#include <linux/suspend.h>
26#include <linux/gpio.h>
26 27
27#include <asm/mach-types.h> 28#include <asm/mach-types.h>
28#include <mach/pm.h> 29#include <mach/pm.h>
@@ -918,9 +919,12 @@ static int __init sharpsl_pm_probe(struct platform_device *pdev)
918 919
919 sharpsl_pm.machinfo->init(); 920 sharpsl_pm.machinfo->init();
920 921
921 pxa_gpio_mode(sharpsl_pm.machinfo->gpio_acin | GPIO_IN); 922 gpio_request(sharpsl_pm.machinfo->gpio_acin, "AC IN");
922 pxa_gpio_mode(sharpsl_pm.machinfo->gpio_batfull | GPIO_IN); 923 gpio_direction_input(sharpsl_pm.machinfo->gpio_acin);
923 pxa_gpio_mode(sharpsl_pm.machinfo->gpio_batlock | GPIO_IN); 924 gpio_request(sharpsl_pm.machinfo->gpio_batfull, "Battery Full");
925 gpio_direction_input(sharpsl_pm.machinfo->gpio_batfull);
926 gpio_request(sharpsl_pm.machinfo->gpio_batlock, "Battery Lock");
927 gpio_direction_input(sharpsl_pm.machinfo->gpio_batlock);
924 928
925 /* Register interrupt handlers */ 929 /* Register interrupt handlers */
926 if (request_irq(IRQ_GPIO(sharpsl_pm.machinfo->gpio_acin), sharpsl_ac_isr, IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, "AC Input Detect", sharpsl_ac_isr)) { 930 if (request_irq(IRQ_GPIO(sharpsl_pm.machinfo->gpio_acin), sharpsl_ac_isr, IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, "AC Input Detect", sharpsl_ac_isr)) {
@@ -979,6 +983,10 @@ static int sharpsl_pm_remove(struct platform_device *pdev)
979 if (sharpsl_pm.machinfo->batfull_irq) 983 if (sharpsl_pm.machinfo->batfull_irq)
980 free_irq(IRQ_GPIO(sharpsl_pm.machinfo->gpio_batfull), sharpsl_chrg_full_isr); 984 free_irq(IRQ_GPIO(sharpsl_pm.machinfo->gpio_batfull), sharpsl_chrg_full_isr);
981 985
986 gpio_free(sharpsl_pm.machinfo->gpio_batlock);
987 gpio_free(sharpsl_pm.machinfo->gpio_batfull);
988 gpio_free(sharpsl_pm.machinfo->gpio_acin);
989
982 if (sharpsl_pm.machinfo->exit) 990 if (sharpsl_pm.machinfo->exit)
983 sharpsl_pm.machinfo->exit(); 991 sharpsl_pm.machinfo->exit();
984 992