]> git.karo-electronics.de Git - karo-tx-linux.git/commit
usb: gadget: f_mass_storage: use NULL instead of 0
authorJingoo Han <jg1.han@samsung.com>
Mon, 5 Aug 2013 03:11:05 +0000 (12:11 +0900)
committerFelipe Balbi <balbi@ti.com>
Fri, 9 Aug 2013 13:33:34 +0000 (16:33 +0300)
commit136c489b1cdcaad8f3da31298b839b5861d9de6d
tree6784baa308eeccc613b867c309cca2a134c110d5
parentffcba5a510af99e9d443b7e577a9cb0515c919e1
usb: gadget: f_mass_storage: use NULL instead of 0

The local variables such as 'filename', 'vendor_name', and
'product_name' are pointers; thus, use NULL instead of 0 to fix
the following sparse warnings

drivers/usb/gadget/f_mass_storage.c:3046:27: warning: Using plain integer as NULL pointer
drivers/usb/gadget/f_mass_storage.c:3050:28: warning: Using plain integer as NULL pointer
drivers/usb/gadget/f_mass_storage.c:3051:29: warning: Using plain integer as NULL pointer

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/f_mass_storage.c