Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

can: slcan: move driver into separate sub directory

This patch moves the slcan driver into a separate directory, a later
patch will add more files.

Link: https://lore.kernel.org/all/20220628163137.413025-10-dario.binacchi@amarulasolutions.com
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

authored by

Dario Binacchi and committed by
Marc Kleine-Budde
98b12064 5bac315b

+7 -1
+1 -1
drivers/net/can/Makefile
··· 5 5 6 6 obj-$(CONFIG_CAN_VCAN) += vcan.o 7 7 obj-$(CONFIG_CAN_VXCAN) += vxcan.o 8 - obj-$(CONFIG_CAN_SLCAN) += slcan.o 8 + obj-$(CONFIG_CAN_SLCAN) += slcan/ 9 9 10 10 obj-y += dev/ 11 11 obj-y += rcar/
drivers/net/can/slcan.c drivers/net/can/slcan/slcan-core.c
+6
drivers/net/can/slcan/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + 3 + obj-$(CONFIG_CAN_SLCAN) += slcan.o 4 + 5 + slcan-objs := 6 + slcan-objs += slcan-core.o