From: Emilio López Date: Mon, 22 Feb 2016 01:26:36 +0000 (-0300) Subject: usb: musb: sunxi: support module autoloading X-Git-Tag: next-20160307~24^2^2~36 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5266a7603faa036f6707623ba76f054349050c85;p=karo-tx-linux.git usb: musb: sunxi: support module autoloading MODULE_DEVICE_TABLE() is missing, so the module isn't auto-loading on sunxi systems using the OTG controller. This commit adds the missing line so it loads automatically when building it as a module and running on a system with an USB OTG port. Signed-off-by: Emilio López Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/musb/sunxi.c b/drivers/usb/musb/sunxi.c index d9b0dc461439..fdab4232cfbf 100644 --- a/drivers/usb/musb/sunxi.c +++ b/drivers/usb/musb/sunxi.c @@ -752,6 +752,7 @@ static const struct of_device_id sunxi_musb_match[] = { { .compatible = "allwinner,sun8i-a33-musb", }, {} }; +MODULE_DEVICE_TABLE(of, sunxi_musb_match); static struct platform_driver sunxi_musb_driver = { .probe = sunxi_musb_probe,