summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/Makefile
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@google.com>2015-11-04 20:46:14 -0800
committerGreg Kroah-Hartman <gregkh@google.com>2015-11-05 18:00:29 -0800
commitc9e9de26f912bc0e5bca6a5168e7d5d427d2b2ee (patch)
tree96d206a3f42b6af0b5b42370116287b2052aca5f /drivers/staging/greybus/Makefile
parenta52028626accc2ae26c9ce03ec7bba68146b8456 (diff)
greybus: hid: hid should not be part of the bridged-phy driver.
HID is a stand-alone greybus protocol, not part of the bridged-phy protocols, so make it a stand-alone kernel module. Note, some hard-coded android init script might need to be changed to load the gb-hid.ko kernel module now. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/staging/greybus/Makefile')
-rw-r--r--drivers/staging/greybus/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile
index cf4cf2178ed6..8b28b4b5a53d 100644
--- a/drivers/staging/greybus/Makefile
+++ b/drivers/staging/greybus/Makefile
@@ -18,7 +18,6 @@ gb-phy-y := gpbridge.o \
uart.o \
pwm.o \
gpio.o \
- hid.o \
i2c.o \
spi.o \
usb.o
@@ -29,6 +28,7 @@ gb-battery-y := battery.o
gb-loopback-y := loopback.o
gb-light-y := light.o
gb-raw-y := raw.o
+gb-hid-y := hid.o
gb-es1-y := es1.o
gb-es2-y := es2.o
gb-db3-y := db3-platform.o
@@ -39,6 +39,7 @@ obj-m += gb-vibrator.o
obj-m += gb-battery.o
obj-m += gb-loopback.o
obj-m += gb-light.o
+obj-m += gb-hid.o
obj-m += gb-raw.o
obj-m += gb-es1.o
obj-m += gb-es2.o