aboutsummaryrefslogtreecommitdiff
path: root/drivers/bus
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2012-08-23 23:10:26 +0530
committerOlof Johansson <olof@lixom.net>2012-09-04 17:02:09 -0700
commit46ca6811534e66e7b3967512efe8259021cd5488 (patch)
tree8d88170f3e5389f19f7fedcc2cbd9f3fbd0053b9 /drivers/bus
parent59bafcf69cdc74f848f212086a8b9c51866da384 (diff)
drivers: bus: omap-ocp2scp: Fix compile error
Fixes: CC [M] drivers/bus/omap-ocp2scp.o drivers/bus/omap-ocp2scp.c:70:1: error: '__mod_of_device_table' aliased to undefined symbol 'omap_usb2_id_table' Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/bus')
-rw-r--r--drivers/bus/omap-ocp2scp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bus/omap-ocp2scp.c b/drivers/bus/omap-ocp2scp.c
index 9075ef8baf5..ff63560b846 100644
--- a/drivers/bus/omap-ocp2scp.c
+++ b/drivers/bus/omap-ocp2scp.c
@@ -67,7 +67,7 @@ static const struct of_device_id omap_ocp2scp_id_table[] = {
{ .compatible = "ti,omap-ocp2scp" },
{}
};
-MODULE_DEVICE_TABLE(of, omap_usb2_id_table);
+MODULE_DEVICE_TABLE(of, omap_ocp2scp_id_table);
#endif
static struct platform_driver omap_ocp2scp_driver = {