staging: most: fix Makefile
authorChristian Gromm <christian.gromm@microchip.com>
Mon, 27 Nov 2017 14:20:04 +0000 (15:20 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Nov 2017 12:34:59 +0000 (13:34 +0100)
This patch fixes the names of the CONFIG symbols and the subfolders make
is supposed to enter in order to build the selected modules.

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/Makefile

index 7f6aa9c..f8bcf48 100644 (file)
@@ -3,10 +3,10 @@ obj-$(CONFIG_MOST) += most_core.o
 most_core-y := core.o
 ccflags-y += -Idrivers/staging/
 
-obj-$(CONFIG_AIM_CDEV) += aim-cdev/
-obj-$(CONFIG_AIM_NETWORK)      += aim-network/
-obj-$(CONFIG_AIM_SOUND)        += aim-sound/
-obj-$(CONFIG_AIM_V4L2) += aim-v4l2/
-obj-$(CONFIG_HDM_DIM2) += hdm-dim2/
-obj-$(CONFIG_HDM_I2C)  += hdm-i2c/
-obj-$(CONFIG_HDM_USB)  += hdm-usb/
+obj-$(CONFIG_MOST_CDEV)        += cdev/
+obj-$(CONFIG_MOST_NET) += net/
+obj-$(CONFIG_MOST_SOUND)       += sound/
+obj-$(CONFIG_MOST_VIDEO)       += video/
+obj-$(CONFIG_MOST_DIM2)        += dim2/
+obj-$(CONFIG_MOST_I2C) += i2c/
+obj-$(CONFIG_MOST_USB) += usb/