Commit 2cd807e7 authored by Felipe Balbi's avatar Felipe Balbi

usb: gadget: mv_u3d_core: fix a compile warning

Fix the following compile warning:

mv_u3d_core.c:1766:12: warning: 'mv_u3d_remove' \
	defined but not used [-Wunused-function]
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 7a071890
...@@ -2072,7 +2072,7 @@ static void mv_u3d_shutdown(struct platform_device *dev) ...@@ -2072,7 +2072,7 @@ static void mv_u3d_shutdown(struct platform_device *dev)
static struct platform_driver mv_u3d_driver = { static struct platform_driver mv_u3d_driver = {
.probe = mv_u3d_probe, .probe = mv_u3d_probe,
.remove = __exit_p(mv_u3d_remove), .remove = mv_u3d_remove,
.shutdown = mv_u3d_shutdown, .shutdown = mv_u3d_shutdown,
.driver = { .driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment