extcon: palmas: Use SIMPLE_DEV_PM_OPS macro
authorJingoo Han <jg1.han@samsung.com>
Thu, 27 Feb 2014 11:36:15 +0000 (20:36 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Mar 2014 04:45:41 +0000 (13:45 +0900)
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>
drivers/extcon/extcon-palmas.c

index 2aea4bcdd7f3944abe04f60997157f5222b52eb1..ddff2b72f0a898b4e50fe69800dab356e3af9358 100644 (file)
@@ -271,10 +271,7 @@ static int palmas_usb_resume(struct device *dev)
 };
 #endif
 
-static const struct dev_pm_ops palmas_pm_ops = {
-       SET_SYSTEM_SLEEP_PM_OPS(palmas_usb_suspend,
-                               palmas_usb_resume)
-};
+static SIMPLE_DEV_PM_OPS(palmas_pm_ops, palmas_usb_suspend, palmas_usb_resume);
 
 static struct of_device_id of_palmas_match_tbl[] = {
        { .compatible = "ti,palmas-usb", },
This page took 0.024796 seconds and 5 git commands to generate.