diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-27 06:37:15 -0500 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2014-03-19 00:45:42 -0400 |
commit | 3cc731d97fb608a09336fbcea1b2bcea9574d1f7 (patch) | |
tree | 3af367e257f6735798a5b3f09b66bd0728d8240b /drivers/extcon | |
parent | 8d4288fb99076063a1a17ad92eb8b2ccef9eafd9 (diff) |
extcon: gpio: Use SIMPLE_DEV_PM_OPS macro
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-gpio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c index a63a6b21c9ad..13d522255d81 100644 --- a/drivers/extcon/extcon-gpio.c +++ b/drivers/extcon/extcon-gpio.c | |||
@@ -176,9 +176,7 @@ static int gpio_extcon_resume(struct device *dev) | |||
176 | } | 176 | } |
177 | #endif | 177 | #endif |
178 | 178 | ||
179 | static const struct dev_pm_ops gpio_extcon_pm_ops = { | 179 | static SIMPLE_DEV_PM_OPS(gpio_extcon_pm_ops, NULL, gpio_extcon_resume); |
180 | SET_SYSTEM_SLEEP_PM_OPS(NULL, gpio_extcon_resume) | ||
181 | }; | ||
182 | 180 | ||
183 | static struct platform_driver gpio_extcon_driver = { | 181 | static struct platform_driver gpio_extcon_driver = { |
184 | .probe = gpio_extcon_probe, | 182 | .probe = gpio_extcon_probe, |