can: flexcan: flexcan_irq(): fix indention
The patch fixes the indention by replacing space by tabs, as noted by
checkpatch:
| ERROR: code indent should use tabs where possible
| #980: FILE: drivers/net/can/flexcan.c:980:
Fixes: da49a8075c
("can: flexcan: implement error passive state quirk")
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
9dc1ee1184
commit
bc8ad65151
|
@ -821,7 +821,7 @@ static irqreturn_t flexcan_irq(int irq, void *dev_id)
|
||||||
/* state change interrupt or broken error state quirk fix is enabled */
|
/* state change interrupt or broken error state quirk fix is enabled */
|
||||||
if ((reg_esr & FLEXCAN_ESR_ERR_STATE) ||
|
if ((reg_esr & FLEXCAN_ESR_ERR_STATE) ||
|
||||||
(priv->devtype_data->quirks & (FLEXCAN_QUIRK_BROKEN_WERR_STATE |
|
(priv->devtype_data->quirks & (FLEXCAN_QUIRK_BROKEN_WERR_STATE |
|
||||||
FLEXCAN_QUIRK_BROKEN_PERR_STATE)))
|
FLEXCAN_QUIRK_BROKEN_PERR_STATE)))
|
||||||
flexcan_irq_state(dev, reg_esr);
|
flexcan_irq_state(dev, reg_esr);
|
||||||
|
|
||||||
/* bus error IRQ - handle if bus error reporting is activated */
|
/* bus error IRQ - handle if bus error reporting is activated */
|
||||||
|
|
Loading…
Reference in New Issue