From: Hans de Goede Date: Wed, 10 Sep 2025 14:07:54 +0000 (+0200) Subject: power: supply: intel_dc_ti_battery: Drop no longer relevant comment X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b8cac8c98e85e977369a4c07b5eccd73fbc30cb9;p=users%2Fhch%2Fmisc.git power: supply: intel_dc_ti_battery: Drop no longer relevant comment Drop the comment about not being able to use devm_iio_channel_get(). The code has actually already successfully been switched over to devm_iio_channel_get(). This is just a no longer applicable left-over comment, drop it. Signed-off-by: Hans de Goede Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/intel_dc_ti_battery.c b/drivers/power/supply/intel_dc_ti_battery.c index 457d23b689e9..56b0c92e9d28 100644 --- a/drivers/power/supply/intel_dc_ti_battery.c +++ b/drivers/power/supply/intel_dc_ti_battery.c @@ -345,11 +345,6 @@ static int dc_ti_battery_probe(struct platform_device *pdev) chip->dev = dev; chip->regmap = pmic->regmap; - /* - * Note cannot use devm_iio_channel_get because ACPI systems lack - * the device<->channel maps which iio_channel_get will uses when passed - * a non NULL device pointer. - */ chip->vbat_channel = devm_iio_channel_get(dev, "VBAT"); if (IS_ERR(chip->vbat_channel)) { dev_dbg(dev, "devm_iio_channel_get() ret %ld\n", PTR_ERR(chip->vbat_channel));