forked from Minki/linux
can: flexcan: flexcan_poll_state(): no need to initialize new_state, rx_state, tx_state
This patch removed the not needed initialisation from the new_state, rx_state, tx_state variabled. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
d166f56bf5
commit
238443df81
@ -591,7 +591,7 @@ static int flexcan_poll_state(struct net_device *dev, u32 reg_esr)
|
|||||||
struct flexcan_priv *priv = netdev_priv(dev);
|
struct flexcan_priv *priv = netdev_priv(dev);
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
struct can_frame *cf;
|
struct can_frame *cf;
|
||||||
enum can_state new_state = 0, rx_state = 0, tx_state = 0;
|
enum can_state new_state, rx_state, tx_state;
|
||||||
int flt;
|
int flt;
|
||||||
struct can_berr_counter bec;
|
struct can_berr_counter bec;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user