]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
usb: phy-twl6030: Add missing braces
authorSachin Kamat <sachin.kamat@linaro.org>
Sat, 21 Dec 2013 09:50:09 +0000 (15:20 +0530)
committerFelipe Balbi <balbi@ti.com>
Mon, 23 Dec 2013 16:13:34 +0000 (10:13 -0600)
Silences the below warning:
WARNING: sizeof *twl should be sizeof(*twl)

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/phy/phy-twl6030-usb.c

index 30e8a61552d4d0526d999c0b49651593f04a5530..d2682ba582116f0f622697ef66eae1ce152aa0ce 100644 (file)
@@ -327,7 +327,7 @@ static int twl6030_usb_probe(struct platform_device *pdev)
        struct device           *dev = &pdev->dev;
        struct twl4030_usb_data *pdata = dev_get_platdata(dev);
 
-       twl = devm_kzalloc(dev, sizeof *twl, GFP_KERNEL);
+       twl = devm_kzalloc(dev, sizeof(*twl), GFP_KERNEL);
        if (!twl)
                return -ENOMEM;