mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00: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>
7 lines
187 B
Makefile
7 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
|