diff options
author | Tomoya <tomoya-linux@dsn.okisemi.com> | 2010-12-12 15:24:20 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-13 15:24:25 -0500 |
commit | d06848be64e13d5d1d73e581fb185e815893d8b7 (patch) | |
tree | c78a647282daab2ebea532d80a3ae3d3fdcad2fc /drivers/net/can | |
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')
-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 5a6a0df5141e..c500b6d65084 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) | |||
1073 | pch_can_set_run_mode(priv, PCH_CAN_STOP); | 1073 | pch_can_set_run_mode(priv, PCH_CAN_STOP); |
1074 | 1074 | ||
1075 | /* Indicate that we are aboutto/in suspend */ | 1075 | /* Indicate that we are aboutto/in suspend */ |
1076 | priv->can.state = CAN_STATE_SLEEPING; | 1076 | priv->can.state = CAN_STATE_STOPPED; |
1077 | 1077 | ||
1078 | /* Waiting for all transmission to complete. */ | 1078 | /* Waiting for all transmission to complete. */ |
1079 | while (counter) { | 1079 | while (counter) { |