diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2020-07-31 14:20:58 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-31 14:38:12 +0200 |
commit | 97a6f772f36b7f52bcfa56a581bbd2470cffe23d (patch) | |
tree | cfda78fcb39ac1846b0d1a944dbd250eee0d81ed /drivers/most/Makefile | |
parent | 11c416e3f0ea437661514fa68967a5dba3cdf886 (diff) |
drivers: most: add USB adapter driver
This patch adds the USB driver source file most_usb.c and
modifies the Makefile and Kconfig accordingly.
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Link: https://lore.kernel.org/r/1596198058-26541-1-git-send-email-christian.gromm@microchip.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/most/Makefile')
-rw-r--r-- | drivers/most/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/most/Makefile b/drivers/most/Makefile index e810cd3a47ee..6a3cb9056288 100644 --- a/drivers/most/Makefile +++ b/drivers/most/Makefile @@ -2,3 +2,5 @@ obj-$(CONFIG_MOST) += most_core.o most_core-y := core.o \ configfs.o + +obj-$(CONFIG_MOST_USB_HDM) += most_usb.o |