On 15.5.20. 15:02, Greg KH wrote: > On Fri, May 15, 2020 at 02:34:55PM +0200, Vladimir Stankovic wrote: >> Added utility macros, kernel device creation and cleanup, functions for >> handling log formatting and a placeholder module for MA-USB Host device >> driver. >> >> Signed-off-by: Vladimir Stankovic <vladimir.stankovic@xxxxxxxxxxxxxxx> >> --- >> MAINTAINERS | 7 +++++ >> drivers/usb/Kconfig | 2 ++ >> drivers/usb/Makefile | 1 + >> drivers/usb/host/mausb/Kconfig | 15 +++++++++ >> drivers/usb/host/mausb/Makefile | 10 ++++++ >> drivers/usb/host/mausb/mausb_core.c | 24 +++++++++++++++ >> drivers/usb/host/mausb/utils.c | 47 +++++++++++++++++++++++++++++ >> drivers/usb/host/mausb/utils.h | 15 +++++++++ >> 8 files changed, 121 insertions(+) >> create mode 100644 drivers/usb/host/mausb/Kconfig >> create mode 100644 drivers/usb/host/mausb/Makefile >> create mode 100644 drivers/usb/host/mausb/mausb_core.c >> create mode 100644 drivers/usb/host/mausb/utils.c >> create mode 100644 drivers/usb/host/mausb/utils.h >> >> diff --git a/MAINTAINERS b/MAINTAINERS >> index 091ec22c1a23..9b7b79215f47 100644 >> --- a/MAINTAINERS >> +++ b/MAINTAINERS >> @@ -10343,6 +10343,13 @@ W: https://linuxtv.org >> T: git git://linuxtv.org/media_tree.git >> F: drivers/media/radio/radio-maxiradio* >> >> +MEDIA AGNOSTIC (MA) USB HOST DRIVER >> +M: Vladimir Stankovic <vladimir.stankovic@xxxxxxxxxxxxxxx> >> +L: mausb-host-devel@xxxxxxxxxxxxxxx > > Please just do this on the linux-usb mailing list, why have a whole new > list for just a single small driver? > > thanks, > > greg k-h > Idea was to have the team notified about any comment/issue within the driver. However, as you noted, same can be achieved with linux-usb subscriptions. -- Regards, Vladimir.