mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
can: flexcan: flexcan_irq(): rename variable reg_iflag -> reg_iflag_rx
This patch renames the variable reg_iflag in the flexcan_irq() function to reg_iflag_rx. This better reflects the contents of the varibale. It does not hold the unmodified iflag registers, instead all non RX interrupts have been masked. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
b36d3c0f7e
commit
4e26598a7d
|
|
@ -897,13 +897,13 @@ static irqreturn_t flexcan_irq(int irq, void *dev_id)
|
|||
|
||||
/* reception interrupt */
|
||||
if (priv->devtype_data->quirks & FLEXCAN_QUIRK_USE_OFF_TIMESTAMP) {
|
||||
u64 reg_iflag;
|
||||
u64 reg_iflag_rx;
|
||||
int ret;
|
||||
|
||||
while ((reg_iflag = flexcan_read_reg_iflag_rx(priv))) {
|
||||
while ((reg_iflag_rx = flexcan_read_reg_iflag_rx(priv))) {
|
||||
handled = IRQ_HANDLED;
|
||||
ret = can_rx_offload_irq_offload_timestamp(&priv->offload,
|
||||
reg_iflag);
|
||||
reg_iflag_rx);
|
||||
if (!ret)
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user