All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH] usb: mtu3: fix up undefined reference to usb_debug_root
@ 2019-05-24  6:11 ` Chunfeng Yun
  0 siblings, 0 replies; 13+ messages in thread
From: Chunfeng Yun @ 2019-05-24  6:11 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Matthias Brugger, Randy Dunlap, Chunfeng Yun, linux-usb,
	linux-arm-kernel, linux-mediatek, linux-kernel

When CONFIG_USB is not set, and CONFIG_USB_GADGET is set,
there is an issue:

ld:
drivers/usb/mtu3/mtu3_debugfs.o: in function 'ssusb_debugfs_create_root':
mtu3_debugfs.c:(.text+0xba3): undefined reference to 'usb_debug_root'

usb_debug_root is only built when CONFIG_USB is enabled, so here drop it
and use NULL instead.

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
---
 drivers/usb/mtu3/mtu3_debugfs.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/usb/mtu3/mtu3_debugfs.c b/drivers/usb/mtu3/mtu3_debugfs.c
index 62c57ddc554e..b7c86ccd50b4 100644
--- a/drivers/usb/mtu3/mtu3_debugfs.c
+++ b/drivers/usb/mtu3/mtu3_debugfs.c
@@ -528,8 +528,7 @@ void ssusb_dr_debugfs_init(struct ssusb_mtk *ssusb)
 
 void ssusb_debugfs_create_root(struct ssusb_mtk *ssusb)
 {
-	ssusb->dbgfs_root =
-		debugfs_create_dir(dev_name(ssusb->dev), usb_debug_root);
+	ssusb->dbgfs_root = debugfs_create_dir(dev_name(ssusb->dev), NULL);
 }
 
 void ssusb_debugfs_remove_root(struct ssusb_mtk *ssusb)
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-05-27  2:56 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24  6:11 [RESEND PATCH] usb: mtu3: fix up undefined reference to usb_debug_root Chunfeng Yun
2019-05-24  6:11 ` Chunfeng Yun
2019-05-24  6:11 ` Chunfeng Yun
2019-05-24  7:45 ` Greg Kroah-Hartman
2019-05-24  7:45   ` Greg Kroah-Hartman
2019-05-24  9:25   ` Chunfeng Yun
2019-05-24  9:25     ` Chunfeng Yun
2019-05-24  9:25     ` Chunfeng Yun
2019-05-24 11:33     ` Greg Kroah-Hartman
2019-05-24 11:33       ` Greg Kroah-Hartman
2019-05-27  2:56       ` Chunfeng Yun
2019-05-27  2:56         ` Chunfeng Yun
2019-05-27  2:56         ` Chunfeng Yun

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.