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 <hansg@kernel.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
Hans de Goede 2025-09-10 16:07:54 +02:00 committed by Sebastian Reichel
parent cc2ec444e4
commit b8cac8c98e

View File

@ -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));