diff options
author | Abhilash K V <abhilash.kv@ti.com> | 2011-08-22 23:05:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-26 12:48:24 -0400 |
commit | 86ad47fff97a9e416aadedfe68909b2d9143dc42 (patch) | |
tree | fc88c4921b561b734115f30d46605e1ce56a0e57 /drivers/net | |
parent | 6f288cc52f478e6f58d96158e7cd857fedb6d111 (diff) |
can: ti_hecc: Fix uninitialized spinlock in probe
In ti_hecc_probe(), the spinlock priv->mbx_lock is not
inited, causing a spinlock lockup BUG.
Acked-by: Anant Gole <anantgole@ti.com>
Signed-off-by: Abhilash K V <abhilash.kv@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/can/ti_hecc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c index 0b19a17d8178..a81249246ece 100644 --- a/drivers/net/can/ti_hecc.c +++ b/drivers/net/can/ti_hecc.c | |||
@@ -923,6 +923,7 @@ static int ti_hecc_probe(struct platform_device *pdev) | |||
923 | priv->can.do_get_state = ti_hecc_get_state; | 923 | priv->can.do_get_state = ti_hecc_get_state; |
924 | priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; | 924 | priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; |
925 | 925 | ||
926 | spin_lock_init(&priv->mbx_lock); | ||
926 | ndev->irq = irq->start; | 927 | ndev->irq = irq->start; |
927 | ndev->flags |= IFF_ECHO; | 928 | ndev->flags |= IFF_ECHO; |
928 | platform_set_drvdata(pdev, ndev); | 929 | platform_set_drvdata(pdev, ndev); |