Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235336
b: refs/heads/master
c: 070b8ed
h: refs/heads/master
v: v3
  • Loading branch information
Hema HK authored and Felipe Balbi committed Feb 18, 2011
1 parent bb26888 commit 35924f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ee896e348cf6f323a00e4ee52e6386f515f86cee
refs/heads/master: 070b8ed96e01adeb978d4f8487fb1350a28fcd0d
13 changes: 13 additions & 0 deletions trunk/drivers/usb/otg/twl6030-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,17 @@ static void twl6030_phy_shutdown(struct otg_transceiver *x)
pdata->phy_power(twl->dev, 0, 0);
}

static int twl6030_phy_suspend(struct otg_transceiver *x, int suspend)
{
struct twl6030_usb *twl = xceiv_to_twl(x);
struct device *dev = twl->dev;
struct twl4030_usb_data *pdata = dev->platform_data;

pdata->phy_suspend(dev, suspend);

return 0;
}

static int twl6030_usb_ldo_init(struct twl6030_usb *twl)
{

Expand Down Expand Up @@ -388,6 +399,7 @@ static int __devinit twl6030_usb_probe(struct platform_device *pdev)
twl->otg.set_vbus = twl6030_set_vbus;
twl->otg.init = twl6030_phy_init;
twl->otg.shutdown = twl6030_phy_shutdown;
twl->otg.set_suspend = twl6030_phy_suspend;

/* init spinlock for workqueue */
spin_lock_init(&twl->lock);
Expand Down Expand Up @@ -432,6 +444,7 @@ static int __devinit twl6030_usb_probe(struct platform_device *pdev)

twl->asleep = 0;
pdata->phy_init(dev);
twl6030_phy_suspend(&twl->otg, 0);
twl6030_enable_irq(&twl->otg);
dev_info(&pdev->dev, "Initialized TWL6030 USB module\n");

Expand Down

0 comments on commit 35924f8

Please sign in to comment.