Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 757620c4 authored by Milo Kim's avatar Milo Kim Committed by Sebastian Reichel
Browse files

power: supply: tps65217: Use generic name for get_property()



Rename it as tps65217_charger_get_property().

Signed-off-by: default avatarMilo Kim <woogyom.kim@gmail.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent da50b3a5
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ static int tps65217_enable_charging(struct tps65217_charger *charger)
	return 0;
}

static int tps65217_ac_get_property(struct power_supply *psy,
static int tps65217_charger_get_property(struct power_supply *psy,
					 enum power_supply_property psp,
					 union power_supply_propval *val)
{
@@ -190,7 +190,7 @@ static int tps65217_charger_poll_task(void *data)
static const struct power_supply_desc tps65217_charger_desc = {
	.name			= "tps65217-ac",
	.type			= POWER_SUPPLY_TYPE_MAINS,
	.get_property		= tps65217_ac_get_property,
	.get_property		= tps65217_charger_get_property,
	.properties		= tps65217_charger_props,
	.num_properties		= ARRAY_SIZE(tps65217_charger_props),
};