]> git.baikalelectronics.ru Git - kernel.git/commit
can: flexcan: convert struct flexcan_priv::rx_mask{1,2} to rx_mask
authorMarc Kleine-Budde <mkl@pengutronix.de>
Fri, 1 Mar 2019 11:17:30 +0000 (12:17 +0100)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Mon, 11 Nov 2019 20:58:11 +0000 (21:58 +0100)
commit60b69c42e3cc71f9ac4c74b02b8afbfa5a5b334f
treeb55ffd43d4f56cf32312de5a05a9510608797075
parent225394ba5844f3dc2e339b81cec964fa09f8f05a
can: flexcan: convert struct flexcan_priv::rx_mask{1,2} to rx_mask

The flexcan IP core has up to 64 mailboxes, each one has a corresponding
interrupt bit in the iflag1 or iflag2 registers and a mask bit in the
imask1 or imask2 registers.

In the timestamp (i.e. non FIFO) mode the driver needs to mask out all non RX
interrupt sources and uses the precomputed values rx_mask1 and rx_mask2 of
struct flexcan_priv for this.

This patch merges the two u32 rx_mask1 and rx_mask2 to a single u64 rx_mask
variable, which simplifies the code a bit.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/flexcan.c