diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-11-06 13:46:10 +0100 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2017-11-06 13:49:12 +0100 |
commit | c09c65ca5c76cc50412fc65e5c91f5dff3e401c5 (patch) | |
tree | 69c2fcbc6590114838021c5dd6df0fc8699db143 /drivers/power | |
parent | 0b07194bb55ed836c2cc7c22e866b87a14681984 (diff) |
power: supply: max8997: Improve a size determination in probe
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/max8997_charger.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/power/supply/max8997_charger.c b/drivers/power/supply/max8997_charger.c index fa861003fece..c73fb4221695 100644 --- a/drivers/power/supply/max8997_charger.c +++ b/drivers/power/supply/max8997_charger.c @@ -146,8 +146,7 @@ static int max8997_battery_probe(struct platform_device *pdev) return ret; } - charger = devm_kzalloc(&pdev->dev, sizeof(struct charger_data), - GFP_KERNEL); + charger = devm_kzalloc(&pdev->dev, sizeof(*charger), GFP_KERNEL); if (!charger) return -ENOMEM; |