diff options
author | Chunfeng Yun <chunfeng.yun@mediatek.com> | 2019-03-21 05:53:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-03-26 10:40:14 +0300 |
commit | ae07809255d3e3419205b673aba6d1dce16a0d65 (patch) | |
tree | dc2654cbad0618874d5476dcfa84f10ae5e19754 /drivers/usb/mtu3/Makefile | |
parent | 48e0d3735aa557a8adaf94632ca3cf78798e8505 (diff) | |
download | linux-ae07809255d3e3419205b673aba6d1dce16a0d65.tar.xz |
usb: mtu3: add debugfs interface files
This adds more debugfs consumers. The debugfs entries read some
important registers, fifo status, QMU ring, endpoint status, and
IPPC probe interface to get internal status.
With these entries, users can check the registers, endpoint and
GPD used during run time.
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/mtu3/Makefile')
-rw-r--r-- | drivers/usb/mtu3/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/mtu3/Makefile b/drivers/usb/mtu3/Makefile index 4a9715812bf9..7c1826bbcebb 100644 --- a/drivers/usb/mtu3/Makefile +++ b/drivers/usb/mtu3/Makefile @@ -17,3 +17,7 @@ endif ifneq ($(CONFIG_USB_MTU3_DUAL_ROLE),) mtu3-y += mtu3_dr.o endif + +ifneq ($(CONFIG_DEBUG_FS),) + mtu3-y += mtu3_debugfs.o +endif |