diff options
author | David Jander <david@protonic.nl> | 2014-10-10 17:30:10 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2017-02-06 15:13:23 +0100 |
commit | d254586c34538c0014280806c5d4795697cf21e5 (patch) | |
tree | ecce05b11eb440dc8bfc211de75304cd977ebbf9 /drivers/net/can/Makefile | |
parent | bd092ad1463ca0990581fa992e12a9b0ed295d25 (diff) | |
download | linux-d254586c34538c0014280806c5d4795697cf21e5.tar.bz2 |
can: rx-offload: Add support for HW fifo based irq offloading
Some CAN controllers have a usable FIFO already but can still benefit
from off-loading the CAN controller FIFO. The CAN frames of the FIFO are
read and put into a skb queue during interrupt and then transmitted in a
NAPI context.
Signed-off-by: David Jander <david@protonic.nl>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can/Makefile')
-rw-r--r-- | drivers/net/can/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/can/Makefile b/drivers/net/can/Makefile index 7a85495dbb0c..0da4f2f5c7e3 100644 --- a/drivers/net/can/Makefile +++ b/drivers/net/can/Makefile @@ -6,7 +6,8 @@ obj-$(CONFIG_CAN_VCAN) += vcan.o obj-$(CONFIG_CAN_SLCAN) += slcan.o obj-$(CONFIG_CAN_DEV) += can-dev.o -can-dev-y := dev.o +can-dev-y += dev.o +can-dev-y += rx-offload.o can-dev-$(CONFIG_CAN_LEDS) += led.o |