public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] serial: samsung: Fix compiler error when !CONFIG_PM_SLEEP
@ 2011-07-27  3:46 Kyungmin Park
  0 siblings, 0 replies; only message in thread
From: Kyungmin Park @ 2011-07-27  3:46 UTC (permalink / raw)
  To: Alan Cox, linux-serial, linux-kernel

From: Kyungmin Park <kyungmin.park@samsung.com>

drivers/tty/serial/samsung.c: In function 's3c24xx_serial_init':
drivers/tty/serial/samsung.c:1237: error: lvalue required as unary '&' operand

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c
index afc6294..318ab90 100644
--- a/drivers/tty/serial/samsung.c
+++ b/drivers/tty/serial/samsung.c
@@ -1225,15 +1225,15 @@ static const struct dev_pm_ops s3c24xx_serial_pm_ops = {
 	.suspend = s3c24xx_serial_suspend,
 	.resume = s3c24xx_serial_resume,
 };
-#else /* !CONFIG_PM_SLEEP */
-#define s3c24xx_serial_pm_ops	NULL
 #endif /* CONFIG_PM_SLEEP */
 
 int s3c24xx_serial_init(struct platform_driver *drv,
 			struct s3c24xx_uart_info *info)
 {
 	dbg("s3c24xx_serial_init(%p,%p)\n", drv, info);
+#ifdef CONFIG_PM_SLEEP
 	drv->driver.pm = &s3c24xx_serial_pm_ops;
+#endif
 
 	return platform_driver_register(drv);
 }

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-07-27  3:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-27  3:46 [PATCH] serial: samsung: Fix compiler error when !CONFIG_PM_SLEEP Kyungmin Park

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox