Skip to content

Commit

Permalink
serial: omap: Remove unnecessary checks from suspend/resume
Browse files Browse the repository at this point in the history
Drop the check for "up" being valid on suspend/resume callbacks.
It should be valid always. Get rid of the "pdata" check also as
serial_omap_get_context_loss_count() checks for it.

Tested on omap4 panda and 3630 based Beagle board.

Signed-off-by: Sourav Poddar <[email protected]>
Reviewed-by: Felipe Balbi <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Sourav Poddar authored and gregkh committed Sep 21, 2012
1 parent 034dc4d commit ac57e7f
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions drivers/tty/serial/omap-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -1222,10 +1222,8 @@ static int serial_omap_suspend(struct device *dev)
{
struct uart_omap_port *up = dev_get_drvdata(dev);

if (up) {
uart_suspend_port(&serial_omap_reg, &up->port);
flush_work_sync(&up->qos_work);
}
uart_suspend_port(&serial_omap_reg, &up->port);
flush_work_sync(&up->qos_work);

return 0;
}
Expand All @@ -1234,8 +1232,8 @@ static int serial_omap_resume(struct device *dev)
{
struct uart_omap_port *up = dev_get_drvdata(dev);

if (up)
uart_resume_port(&serial_omap_reg, &up->port);
uart_resume_port(&serial_omap_reg, &up->port);

return 0;
}
#endif
Expand Down Expand Up @@ -1553,17 +1551,14 @@ static int serial_omap_runtime_suspend(struct device *dev)
static int serial_omap_runtime_resume(struct device *dev)
{
struct uart_omap_port *up = dev_get_drvdata(dev);
struct omap_uart_port_info *pdata = dev->platform_data;

if (up && pdata) {
u32 loss_cnt = serial_omap_get_context_loss_count(up);
u32 loss_cnt = serial_omap_get_context_loss_count(up);

if (up->context_loss_cnt != loss_cnt)
serial_omap_restore_context(up);
if (up->context_loss_cnt != loss_cnt)
serial_omap_restore_context(up);

up->latency = up->calc_latency;
schedule_work(&up->qos_work);
}
up->latency = up->calc_latency;
schedule_work(&up->qos_work);

return 0;
}
Expand Down

0 comments on commit ac57e7f

Please sign in to comment.