diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-02-22 16:26:00 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-02-24 00:28:56 -0500 |
commit | 02f5b98951c631a3c4b3cc398dd2b14d274a6155 (patch) | |
tree | 357c026f464d5790833630eac6ac9bc78d4d2bf9 /drivers/pinctrl/core.c | |
parent | 95dcd4aea57f1d449305f3032240bba0a839593b (diff) |
pinctrl: allocate sizeof(*p) instead of sizeof(struct foo)
This hopefully makes it harder to take the sizeof the wrong type.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Dong Aisheng <dong.aisheng@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/core.c')
-rw-r--r-- | drivers/pinctrl/core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c index 1d5943069a03..2cc8f727aedf 100644 --- a/drivers/pinctrl/core.c +++ b/drivers/pinctrl/core.c | |||
@@ -502,7 +502,7 @@ static struct pinctrl *pinctrl_get_locked(struct device *dev, const char *name) | |||
502 | * mapping, this is what consumers will get when requesting | 502 | * mapping, this is what consumers will get when requesting |
503 | * a pin control handle with pinctrl_get() | 503 | * a pin control handle with pinctrl_get() |
504 | */ | 504 | */ |
505 | p = kzalloc(sizeof(struct pinctrl), GFP_KERNEL); | 505 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
506 | if (p == NULL) { | 506 | if (p == NULL) { |
507 | dev_err(dev, "failed to alloc struct pinctrl\n"); | 507 | dev_err(dev, "failed to alloc struct pinctrl\n"); |
508 | return ERR_PTR(-ENOMEM); | 508 | return ERR_PTR(-ENOMEM); |
@@ -726,7 +726,7 @@ static int pinctrl_hog_map(struct pinctrl_dev *pctldev, | |||
726 | struct pinctrl *p; | 726 | struct pinctrl *p; |
727 | int ret; | 727 | int ret; |
728 | 728 | ||
729 | hog = kzalloc(sizeof(struct pinctrl_hog), GFP_KERNEL); | 729 | hog = kzalloc(sizeof(*hog), GFP_KERNEL); |
730 | if (!hog) { | 730 | if (!hog) { |
731 | dev_err(pctldev->dev, "failed to alloc struct pinctrl_hog\n"); | 731 | dev_err(pctldev->dev, "failed to alloc struct pinctrl_hog\n"); |
732 | return -ENOMEM; | 732 | return -ENOMEM; |
@@ -1160,7 +1160,7 @@ struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc, | |||
1160 | if (pctldesc->name == NULL) | 1160 | if (pctldesc->name == NULL) |
1161 | return NULL; | 1161 | return NULL; |
1162 | 1162 | ||
1163 | pctldev = kzalloc(sizeof(struct pinctrl_dev), GFP_KERNEL); | 1163 | pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL); |
1164 | if (pctldev == NULL) { | 1164 | if (pctldev == NULL) { |
1165 | dev_err(dev, "failed to alloc struct pinctrl_dev\n"); | 1165 | dev_err(dev, "failed to alloc struct pinctrl_dev\n"); |
1166 | return NULL; | 1166 | return NULL; |