diff options
author | Tomoya MORINAGA <tomoya-linux@dsn.okisemi.com> | 2011-02-09 16:46:21 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-09 16:46:21 -0800 |
commit | ebc02e9c524e9ff377dd8a3820522d381adf19c8 (patch) | |
tree | d9743ba16c85ab48d576440cc0aa2e8b9d9fce05 | |
parent | cd141eeea911029b248cecf2fc464a12fe575dcf (diff) | |
download | linux-3.10-ebc02e9c524e9ff377dd8a3820522d381adf19c8.tar.gz linux-3.10-ebc02e9c524e9ff377dd8a3820522d381adf19c8.tar.bz2 linux-3.10-ebc02e9c524e9ff377dd8a3820522d381adf19c8.zip |
pch_can: fix tseg1/tseg2 setting issue
Previous patch "[PATCH 1/3] pch_can: fix 800k comms issue" is wrong.
I should have modified tseg1_min not tseg2_min.
This patch reverts tseg2_min to 1 and set tseg1_min to 2.
Signed-off-by: Tomoya MORINAGA <tomoya-linux@dsn.okisemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/can/pch_can.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c index 7d8bc128044..e54712b22c2 100644 --- a/drivers/net/can/pch_can.c +++ b/drivers/net/can/pch_can.c @@ -185,9 +185,9 @@ struct pch_can_priv { static struct can_bittiming_const pch_can_bittiming_const = { .name = KBUILD_MODNAME, - .tseg1_min = 1, + .tseg1_min = 2, .tseg1_max = 16, - .tseg2_min = 2, + .tseg2_min = 1, .tseg2_max = 8, .sjw_max = 4, .brp_min = 1, |