diff options
author | Tomoya <tomoya-linux@dsn.okisemi.com> | 2010-12-12 20:24:20 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-13 12:24:25 -0800 |
commit | d06848be64e13d5d1d73e581fb185e815893d8b7 (patch) | |
tree | c78a647282daab2ebea532d80a3ae3d3fdcad2fc /drivers/net/can/pch_can.c | |
parent | 0e0805c4063d0611e282bb7fdebe2e223bfe7220 (diff) |
pch_can: Fix miss-setting status issue
Modify miss-setting status issue at suspend.
Signed-off-by: Tomoya MORINAGA <tomoya-linux@dsn.okisemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/pch_can.c')
-rw-r--r-- | drivers/net/can/pch_can.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c index 5a6a0df5141..c500b6d6508 100644 --- a/drivers/net/can/pch_can.c +++ b/drivers/net/can/pch_can.c @@ -1073,7 +1073,7 @@ static int pch_can_suspend(struct pci_dev *pdev, pm_message_t state) pch_can_set_run_mode(priv, PCH_CAN_STOP); /* Indicate that we are aboutto/in suspend */ - priv->can.state = CAN_STATE_SLEEPING; + priv->can.state = CAN_STATE_STOPPED; /* Waiting for all transmission to complete. */ while (counter) { |