ata/pata_arasan_cf: Move arasan_cf_pm_ops out of #ifdef, #endif macros
authorViresh Kumar <viresh.linux@gmail.com>
Sat, 21 Apr 2012 12:10:09 +0000 (17:40 +0530)
committerJeff Garzik <jgarzik@redhat.com>
Thu, 3 May 2012 18:08:03 +0000 (14:08 -0400)
#ifdef, #endif is not required in definition/usage of arasan_cf_pm_ops. So, move
this definition and its usage outside of them.

Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>

drivers/ata/pata_arasan_cf.c

index fc2db2a..3239517 100644 (file)
@@ -943,9 +943,9 @@ static int arasan_cf_resume(struct device *dev)
 
        return 0;
 }
+#endif
 
 static SIMPLE_DEV_PM_OPS(arasan_cf_pm_ops, arasan_cf_suspend, arasan_cf_resume);
-#endif
 
 static struct platform_driver arasan_cf_driver = {
        .probe          = arasan_cf_probe,
@@ -953,9 +953,7 @@ static struct platform_driver arasan_cf_driver = {
        .driver         = {
                .name   = DRIVER_NAME,
                .owner  = THIS_MODULE,
-#ifdef CONFIG_PM
                .pm     = &arasan_cf_pm_ops,
-#endif
        },
 };