Skip to content

Commit

Permalink
power: generic-adc-battery: check for duplicate properties copied fro…
Browse files Browse the repository at this point in the history
…m iio channels

commit a427503 upstream.

If an iio channel defines a basic property, there are duplicate entries
in /sys/class/power/*/uevent.

So add a check to avoid duplicates. Since all channels may be duplicates,
we have to modify the related error check.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Cc: stable@vger.kernel.org
Fixes: e60fea7 ("power: battery: Generic battery driver using IIO")
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H. Nikolaus Schaller authored and Greg Kroah-Hartman committed Sep 5, 2018
1 parent 7ffb7b7 commit 0f9bf06
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions drivers/power/supply/generic-adc-battery.c
Original file line number Diff line number Diff line change
@@ -244,6 +244,7 @@ static int gab_probe(struct platform_device *pdev)
int ret = 0;
int chan;
int index = ARRAY_SIZE(gab_props);
bool any = false;

adc_bat = devm_kzalloc(&pdev->dev, sizeof(*adc_bat), GFP_KERNEL);
if (!adc_bat) {
@@ -290,12 +291,22 @@ static int gab_probe(struct platform_device *pdev)
adc_bat->channel[chan] = NULL;
} else {
/* copying properties for supported channels only */
psy_desc->properties[index++] = gab_dyn_props[chan];
int index2;

for (index2 = 0; index2 < index; index2++) {
if (psy_desc->properties[index2] ==
gab_dyn_props[chan])
break; /* already known */
}
if (index2 == index) /* really new */
psy_desc->properties[index++] =
gab_dyn_props[chan];
any = true;
}
}

/* none of the channels are supported so let's bail out */
if (index == ARRAY_SIZE(gab_props)) {
if (!any) {
ret = -ENODEV;
goto second_mem_fail;
}

0 comments on commit 0f9bf06

Please sign in to comment.