diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2017-11-21 15:04:36 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-11-27 09:20:33 +0100 |
commit | 7b9cdcf6ea8062b4a003b0a06601d94a52f95eeb (patch) | |
tree | 3130999dbbd283f8d8bd9f7c96a0870707e4b6b8 /drivers | |
parent | 057301cd972e44fa97b4834d9421878fe5edc059 (diff) | |
download | linux-stable-7b9cdcf6ea8062b4a003b0a06601d94a52f95eeb.tar.gz linux-stable-7b9cdcf6ea8062b4a003b0a06601d94a52f95eeb.tar.bz2 linux-stable-7b9cdcf6ea8062b4a003b0a06601d94a52f95eeb.zip |
staging: most: cdev: rename module
This patch renames the folder of the cdev module. This is needed
to clear the directory layout.
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/most/Kconfig | 2 | ||||
-rw-r--r-- | drivers/staging/most/cdev/Kconfig (renamed from drivers/staging/most/aim-cdev/Kconfig) | 6 | ||||
-rw-r--r-- | drivers/staging/most/cdev/Makefile | 4 | ||||
-rw-r--r-- | drivers/staging/most/cdev/cdev.c (renamed from drivers/staging/most/aim-cdev/cdev.c) | 0 |
4 files changed, 8 insertions, 4 deletions
diff --git a/drivers/staging/most/Kconfig b/drivers/staging/most/Kconfig index 2045f7ac5081..60a2825e6076 100644 --- a/drivers/staging/most/Kconfig +++ b/drivers/staging/most/Kconfig @@ -17,7 +17,7 @@ menuconfig MOST if MOST -source "drivers/staging/most/aim-cdev/Kconfig" +source "drivers/staging/most/cdev/Kconfig" source "drivers/staging/most/aim-network/Kconfig" diff --git a/drivers/staging/most/aim-cdev/Kconfig b/drivers/staging/most/cdev/Kconfig index 3c59f1bac127..2b04e26bcbea 100644 --- a/drivers/staging/most/aim-cdev/Kconfig +++ b/drivers/staging/most/cdev/Kconfig @@ -2,11 +2,11 @@ # MOST Cdev configuration # -config AIM_CDEV - tristate "Cdev AIM" +config MOST_CDEV + tristate "Cdev" ---help--- Say Y here if you want to commumicate via character devices. To compile this driver as a module, choose M here: the - module will be called aim_cdev.
\ No newline at end of file + module will be called most_cdev. diff --git a/drivers/staging/most/cdev/Makefile b/drivers/staging/most/cdev/Makefile new file mode 100644 index 000000000000..afb9870eb50f --- /dev/null +++ b/drivers/staging/most/cdev/Makefile @@ -0,0 +1,4 @@ +obj-$(CONFIG_MOST_CDEV) += most_cdev.o + +most_cdev-objs := cdev.o +ccflags-y += -Idrivers/staging/ diff --git a/drivers/staging/most/aim-cdev/cdev.c b/drivers/staging/most/cdev/cdev.c index 3ae9246c0c5c..3ae9246c0c5c 100644 --- a/drivers/staging/most/aim-cdev/cdev.c +++ b/drivers/staging/most/cdev/cdev.c |