mirror of https://gitee.com/openkylin/linux.git
can: c_can: use 32-bit write to set arbitration register
The arbitration register is already set up with 32-bit writes in the other parts of the code except for this point. Link: https://lore.kernel.org/r/20210302215435.18286-5-dariobin@libero.it Signed-off-by: Dario Binacchi <dariobin@libero.it> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
eddf671150
commit
fcbded0198
|
@ -279,8 +279,7 @@ static void c_can_inval_msg_object(struct net_device *dev, int iface, int obj)
|
|||
{
|
||||
struct c_can_priv *priv = netdev_priv(dev);
|
||||
|
||||
priv->write_reg(priv, C_CAN_IFACE(ARB1_REG, iface), 0);
|
||||
priv->write_reg(priv, C_CAN_IFACE(ARB2_REG, iface), 0);
|
||||
priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), 0);
|
||||
c_can_inval_tx_object(dev, iface, obj);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue