Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 719a6e88 authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman
Browse files

USB: core: fix sparse warning for static function



Fix the following sparse warning:

drivers/usb/core/usb.c:1033:15: warning: symbol 'usb_debug_devices' was not declared. Should it be static?

Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 396cda90
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1067,7 +1067,7 @@ static struct notifier_block usb_bus_nb = {
struct dentry *usb_debug_root;
struct dentry *usb_debug_root;
EXPORT_SYMBOL_GPL(usb_debug_root);
EXPORT_SYMBOL_GPL(usb_debug_root);


struct dentry *usb_debug_devices;
static struct dentry *usb_debug_devices;


static int usb_debugfs_init(void)
static int usb_debugfs_init(void)
{
{