From 5041b8e46cd92534190c02106f7c5625bb4fbc51 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Fri, 21 Mar 2014 15:54:41 +0000
Subject: [PATCH] kernel: add can.ko to the kmod-can package.

Build all of the can support as modules, otherwise the kernel image is
changed when a can kernel package is selected, because the can protocol
is then built in into the kernel image.

Signed-off-by: Jan Kardell <jan.kardell@telliq.com>

SVN-Revision: 39989
---
 package/kernel/linux/modules/can.mk | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/package/kernel/linux/modules/can.mk b/package/kernel/linux/modules/can.mk
index 39c1c969ad..ab7fcfa53a 100644
--- a/package/kernel/linux/modules/can.mk
+++ b/package/kernel/linux/modules/can.mk
@@ -11,7 +11,7 @@ define KernelPackage/can
   SUBMENU:=$(CAN_MENU)
   TITLE:=CAN bus support
   KCONFIG:=\
-	CONFIG_CAN=y \
+	CONFIG_CAN=m \
 	CONFIG_CAN_DEV \
 	CONFIG_CAN_CALC_BITTIMING=y \
 	CONFIG_CAN_LEDS=y \
@@ -29,8 +29,9 @@ define KernelPackage/can
 	CONFIG_CAN_SOFTING=n \
 	CONFIG_NET_EMATCH_CANID=n \
 	CONFIG_CAN_DEBUG_DEVICES=n
-  FILES:=$(LINUX_DIR)/drivers/net/can/can-dev.ko
-  AUTOLOAD:=$(call AutoProbe,can-dev)
+  FILES:=$(LINUX_DIR)/drivers/net/can/can-dev.ko \
+	 $(LINUX_DIR)/net/can/can.ko
+  AUTOLOAD:=$(call AutoProbe,can can-dev)
 endef
 
 define KernelPackage/can/description
-- 
2.30.2