aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/da8xx.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2010-12-02 09:48:58 +0200
committerFelipe Balbi <balbi@ti.com>2010-12-10 10:21:23 +0200
commitf7ec94370f417fedad4db1054228ef958d48b926 (patch)
treeb036e02e21c04f60300394247869bdd5cda90026 /drivers/usb/musb/da8xx.c
parentusb: musb: blackfin: give it a context structure (diff)
downloadlinux-dev-f7ec94370f417fedad4db1054228ef958d48b926.tar.xz
linux-dev-f7ec94370f417fedad4db1054228ef958d48b926.zip
usb: musb: pass platform_ops via platform_data
... then we don't need to export any symbols from glue layer to musb_core. Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/da8xx.c')
-rw-r--r--drivers/usb/musb/da8xx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c
index 94ddfe01d673..45ccac3aad9d 100644
--- a/drivers/usb/musb/da8xx.c
+++ b/drivers/usb/musb/da8xx.c
@@ -475,7 +475,7 @@ static int da8xx_musb_exit(struct musb *musb)
return 0;
}
-const struct musb_platform_ops musb_ops = {
+static const struct musb_platform_ops da8xx_ops = {
.init = da8xx_musb_init,
.exit = da8xx_musb_exit,
@@ -517,6 +517,8 @@ static int __init da8xx_probe(struct platform_device *pdev)
glue->dev = &pdev->dev;
glue->musb = musb;
+ pdata->platform_ops = &da8xx_ops;
+
platform_set_drvdata(pdev, glue);
ret = platform_device_add_resources(musb, pdev->resource,