diff options
-rw-r--r-- | drivers/tty/serial/8250/8250_omap.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/tty/serial/8250/8250_omap.c b/drivers/tty/serial/8250/8250_omap.c index 336602eb453e..96b69bfd773f 100644 --- a/drivers/tty/serial/8250/8250_omap.c +++ b/drivers/tty/serial/8250/8250_omap.c | |||
@@ -561,7 +561,7 @@ static int omap_8250_startup(struct uart_port *port) | |||
561 | if (ret) | 561 | if (ret) |
562 | goto err; | 562 | goto err; |
563 | 563 | ||
564 | #ifdef CONFIG_PM_RUNTIME | 564 | #ifdef CONFIG_PM |
565 | up->capabilities |= UART_CAP_RPM; | 565 | up->capabilities |= UART_CAP_RPM; |
566 | #endif | 566 | #endif |
567 | 567 | ||
@@ -997,12 +997,12 @@ static int omap8250_probe(struct platform_device *pdev) | |||
997 | up.port.fifosize = 64; | 997 | up.port.fifosize = 64; |
998 | up.tx_loadsz = 64; | 998 | up.tx_loadsz = 64; |
999 | up.capabilities = UART_CAP_FIFO; | 999 | up.capabilities = UART_CAP_FIFO; |
1000 | #ifdef CONFIG_PM_RUNTIME | 1000 | #ifdef CONFIG_PM |
1001 | /* | 1001 | /* |
1002 | * PM_RUNTIME is mostly transparent. However to do it right we need to a | 1002 | * Runtime PM is mostly transparent. However to do it right we need to a |
1003 | * TX empty interrupt before we can put the device to auto idle. So if | 1003 | * TX empty interrupt before we can put the device to auto idle. So if |
1004 | * PM_RUNTIME is not enabled we don't add that flag and can spare that | 1004 | * PM is not enabled we don't add that flag and can spare that one extra |
1005 | * one extra interrupt in the TX path. | 1005 | * interrupt in the TX path. |
1006 | */ | 1006 | */ |
1007 | up.capabilities |= UART_CAP_RPM; | 1007 | up.capabilities |= UART_CAP_RPM; |
1008 | #endif | 1008 | #endif |
@@ -1105,7 +1105,7 @@ static int omap8250_remove(struct platform_device *pdev) | |||
1105 | return 0; | 1105 | return 0; |
1106 | } | 1106 | } |
1107 | 1107 | ||
1108 | #if defined(CONFIG_PM_SLEEP) || defined(CONFIG_PM_RUNTIME) | 1108 | #ifdef CONFIG_PM |
1109 | 1109 | ||
1110 | static inline void omap8250_enable_wakeirq(struct omap8250_priv *priv, | 1110 | static inline void omap8250_enable_wakeirq(struct omap8250_priv *priv, |
1111 | bool enable) | 1111 | bool enable) |
@@ -1179,7 +1179,7 @@ static int omap8250_resume(struct device *dev) | |||
1179 | #define omap8250_complete NULL | 1179 | #define omap8250_complete NULL |
1180 | #endif | 1180 | #endif |
1181 | 1181 | ||
1182 | #ifdef CONFIG_PM_RUNTIME | 1182 | #ifdef CONFIG_PM |
1183 | static int omap8250_lost_context(struct uart_8250_port *up) | 1183 | static int omap8250_lost_context(struct uart_8250_port *up) |
1184 | { | 1184 | { |
1185 | u32 val; | 1185 | u32 val; |