diff options
author | Felipe Balbi | 2009-12-04 15:47:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2009-12-11 11:55:27 -0800 |
commit | 2eb5052e2a22b0d9edbca19d099661fdabfc03ca (patch) | |
tree | b677c2a5db9c28dc1cad71ebe43d62e0f6332967 | |
parent | 719a6e8876ee860fcb0c90d4123bff1e3df26dfd (diff) |
USB: core: hub: fix sparse warning
Fix the following sparse warning:
drivers/usb/core/hub.c:1664:37: warning: Using plain integer as NULL pointer
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/core/hub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index e4b0e28f7453..06af970e1064 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -1676,7 +1676,7 @@ static int usb_configure_device_otg(struct usb_device *udev) if (!udev->bus->is_b_host && udev->config && udev->parent == udev->bus->root_hub) { - struct usb_otg_descriptor *desc = 0; + struct usb_otg_descriptor *desc = NULL; struct usb_bus *bus = udev->bus; /* descriptor may appear anywhere in config */ |