Skip to content

Commit

Permalink
drivers: bus: omap-ocp2scp: Fix compile error
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
  • Loading branch information
kishon authored and olofj committed Sep 5, 2012
1 parent 59bafcf commit 46ca681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/bus/omap-ocp2scp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 46ca681

Please sign in to comment.