diff options
author | 2013-09-18 19:03:33 +0200 | |
---|---|---|
committer | 2013-10-01 09:31:13 -0500 | |
commit | 80d2e76c2e162264dff1c5107a31b8d99e816cd4 (patch) | |
tree | 934e7df70b63b8371205ba7fa6f1bab49b67164a | |
parent | usb: musb: name ux500 platforms more broadly (diff) | |
download | linux-dev-80d2e76c2e162264dff1c5107a31b8d99e816cd4.tar.xz linux-dev-80d2e76c2e162264dff1c5107a31b8d99e816cd4.zip |
usb: musb: Add missing ATOMIC_INIT_NOTIFIER_HEAD
&twl->phy.notifier is not initalized
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/phy/phy-twl4030-usb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/phy/phy-twl4030-usb.c b/drivers/usb/phy/phy-twl4030-usb.c index 90730c8762b8..5baa9c7267f4 100644 --- a/drivers/usb/phy/phy-twl4030-usb.c +++ b/drivers/usb/phy/phy-twl4030-usb.c @@ -705,6 +705,8 @@ static int twl4030_usb_probe(struct platform_device *pdev) if (device_create_file(&pdev->dev, &dev_attr_vbus)) dev_warn(&pdev->dev, "could not create sysfs file\n"); + ATOMIC_INIT_NOTIFIER_HEAD(&twl->phy.notifier); + /* Our job is to use irqs and status from the power module * to keep the transceiver disabled when nothing's connected. * |