Commit b6d790f7 authored by Sachin Kamat's avatar Sachin Kamat Committed by Kishon Vijay Abraham I

usb: phy: twl4030-usb: Silence checkpatch warnings

Silences the following warnings:
WARNING: sizeof *twl should be sizeof(*twl)
WARNING: sizeof *otg should be sizeof(*otg)
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent cfbf8d48
...@@ -661,7 +661,7 @@ static int twl4030_usb_probe(struct platform_device *pdev) ...@@ -661,7 +661,7 @@ static int twl4030_usb_probe(struct platform_device *pdev)
struct phy_provider *phy_provider; struct phy_provider *phy_provider;
struct phy_init_data *init_data = NULL; struct phy_init_data *init_data = NULL;
twl = devm_kzalloc(&pdev->dev, sizeof *twl, GFP_KERNEL); twl = devm_kzalloc(&pdev->dev, sizeof(*twl), GFP_KERNEL);
if (!twl) if (!twl)
return -ENOMEM; return -ENOMEM;
...@@ -676,7 +676,7 @@ static int twl4030_usb_probe(struct platform_device *pdev) ...@@ -676,7 +676,7 @@ static int twl4030_usb_probe(struct platform_device *pdev)
return -EINVAL; return -EINVAL;
} }
otg = devm_kzalloc(&pdev->dev, sizeof *otg, GFP_KERNEL); otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL);
if (!otg) if (!otg)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment