]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
USB: move usb debugfs directory creation to the usb common core
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Jun 2019 12:44:40 +0000 (14:44 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Jun 2019 06:59:19 +0000 (08:59 +0200)
commit812086d362a1d589d2b2e10957254ac13e83522b
tree4d27f58ddf4f1fbde0cfd3ab7472c0aabbca0f40
parent0e016249f6877eb279da6369f182e4c9efe88cab
USB: move usb debugfs directory creation to the usb common core

The USB gadget subsystem wants to use the USB debugfs root directory, so
move it to the common "core" USB code so that it is properly initialized
and removed as needed.

In order to properly do this, we need to load the common code before the
usb core code, when everything is linked into the kernel, so reorder the
link order of the code.

Also as the usb common code has the possibility of the led trigger logic
to be merged into it, handle the build option properly by only having
one module init/exit function and have the common code initialize the
led trigger if needed.

Reported-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Cc: Felipe Balbi <felipe.balbi@linux.intel.com>
Tested-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/Makefile
drivers/usb/common/common.c
drivers/usb/common/common.h [new file with mode: 0644]
drivers/usb/common/led.c
drivers/usb/core/usb.c