aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2011-04-21 14:10:16 +0900
committerGreg Kroah-Hartman <gregkh@suse.de>2011-04-29 17:24:32 -0700
commitaf32fe511374f17feb137d7fbfe2f4c73a8f531c (patch)
treecc60eb666cc945a39ce5e0ca4c7399aa8460af9b /include/linux/usb
parent9a28b7bd4f1fb388a15b12fb425a589ba6188425 (diff)
downloadkernel_samsung_smdk4412-af32fe511374f17feb137d7fbfe2f4c73a8f531c.zip
kernel_samsung_smdk4412-af32fe511374f17feb137d7fbfe2f4c73a8f531c.tar.gz
kernel_samsung_smdk4412-af32fe511374f17feb137d7fbfe2f4c73a8f531c.tar.bz2
usb: renesas_usbhs: remove callback when module removed.
The callback function which is called from platform must be removed if module removed. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb')
-rw-r--r--include/linux/usb/renesas_usbhs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb/renesas_usbhs.h b/include/linux/usb/renesas_usbhs.h
index 565bca3..66bbdd1 100644
--- a/include/linux/usb/renesas_usbhs.h
+++ b/include/linux/usb/renesas_usbhs.h
@@ -143,7 +143,7 @@ struct renesas_usbhs_platform_info {
({ \
struct renesas_usbhs_driver_callback *dc; \
dc = &(renesas_usbhs_get_info(pdev)->driver_callback); \
- if (dc) \
+ if (dc && dc->notify_hotplug) \
dc->notify_hotplug(pdev); \
})
#endif /* RENESAS_USB_H */