Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb9751d4 authored by Viresh Kumar's avatar Viresh Kumar Committed by Jeff Garzik
Browse files

ata/pata_arasan_cf: Move arasan_cf_pm_ops out of #ifdef, #endif macros



#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: default avatarViresh Kumar <viresh.kumar@st.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent a78f57af
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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
	},
};