1
0
Fork 0

net/can/mscan: Fix buggy listen only mode setting

This patch fixes an issue introduced recently with commit
452448f928.

CC: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Wolfgang Grandegger 2011-11-14 14:30:05 -05:00 committed by David S. Miller
parent 612a94d6f2
commit abbd00b82a
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ static int mscan_open(struct net_device *dev)
priv->open_time = jiffies;
if (ctrlmode.flags & CAN_CTRLMODE_LISTENONLY)
if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
setbits8(&regs->canctl1, MSCAN_LISTEN);
else
clrbits8(&regs->canctl1, MSCAN_LISTEN);