diff options
author | Daniel Mack <zonque@gmail.com> | 2013-09-30 21:02:09 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-10-02 08:22:19 -0500 |
commit | a89adb098ac33934b6b0a773853a12220376d600 (patch) | |
tree | 1810dbbf89761665d9e85687be2982a381974f06 /drivers | |
parent | 0967313b6fe14f34d87b1ef278f7771ed8900eb1 (diff) | |
download | linux-stable-a89adb098ac33934b6b0a773853a12220376d600.tar.gz linux-stable-a89adb098ac33934b6b0a773853a12220376d600.tar.bz2 linux-stable-a89adb098ac33934b6b0a773853a12220376d600.zip |
usb: musb: ux500: use SIMPLE_DEV_PM_OPS
This removes the DEV_PM_OPS macro and brings this file in line with the
other musb platform drivers.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/musb/ux500.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c index 59256b12f746..f483d1924c28 100644 --- a/drivers/usb/musb/ux500.c +++ b/drivers/usb/musb/ux500.c @@ -376,17 +376,10 @@ static int ux500_resume(struct device *dev) return 0; } - -static const struct dev_pm_ops ux500_pm_ops = { - .suspend = ux500_suspend, - .resume = ux500_resume, -}; - -#define DEV_PM_OPS (&ux500_pm_ops) -#else -#define DEV_PM_OPS NULL #endif +static SIMPLE_DEV_PM_OPS(ux500_pm_ops, ux500_suspend, ux500_resume); + static const struct of_device_id ux500_match[] = { { .compatible = "stericsson,db8500-musb", }, {} @@ -397,7 +390,7 @@ static struct platform_driver ux500_driver = { .remove = ux500_remove, .driver = { .name = "musb-ux500", - .pm = DEV_PM_OPS, + .pm = &ux500_pm_ops, .of_match_table = ux500_match, }, }; |