summaryrefslogtreecommitdiff
path: root/drivers/staging/ti-soc-thermal
diff options
context:
space:
mode:
authorEduardo Valentin <eduardo.valentin@ti.com>2013-03-19 14:54:24 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 18:28:31 (GMT)
commitf6843569defd08e7b80a9800f91d21e1abf6d9e3 (patch)
tree1dac63495b3b91fdf834561ed3a004f90acfba9d /drivers/staging/ti-soc-thermal
parent9879b2c46f432d6d805743d14a7456b6fae8ac7a (diff)
downloadlinux-fsl-qoriq-f6843569defd08e7b80a9800f91d21e1abf6d9e3.tar.xz
stating: ti-soc-thermal: use sizeof(*pointer) while allocating
Follow Documentation/CodingStyle and use sizeof(*pointer) instead of sizeof(struct type). Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ti-soc-thermal')
-rw-r--r--drivers/staging/ti-soc-thermal/ti-bandgap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/ti-soc-thermal/ti-bandgap.c b/drivers/staging/ti-soc-thermal/ti-bandgap.c
index 2fe90e1..7d67f72 100644
--- a/drivers/staging/ti-soc-thermal/ti-bandgap.c
+++ b/drivers/staging/ti-soc-thermal/ti-bandgap.c
@@ -900,8 +900,7 @@ static struct ti_bandgap *ti_bandgap_build(struct platform_device *pdev)
return ERR_PTR(-EINVAL);
}
- bgp = devm_kzalloc(&pdev->dev, sizeof(struct ti_bandgap),
- GFP_KERNEL);
+ bgp = devm_kzalloc(&pdev->dev, sizeof(*bgp), GFP_KERNEL);
if (!bgp) {
dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n");
return ERR_PTR(-ENOMEM);