mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
ceea934448
This patch adds the character device (cdev) driver source file most_cdev.c and modifies the Makefiles and Kconfigs accordingly. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Link: https://lore.kernel.org/r/1597922595-27493-1-git-send-email-christian.gromm@microchip.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8 lines
187 B
Makefile
8 lines
187 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_MOST) += most_core.o
|
|
most_core-y := core.o \
|
|
configfs.o
|
|
|
|
obj-$(CONFIG_MOST_USB_HDM) += most_usb.o
|
|
obj-$(CONFIG_MOST_CDEV) += most_cdev.o
|