FROMGIT: power: supply: Allow charger manager can be built as a module

Allow charger manager can be built as a module like other charger
drivers.

Signed-off-by: Baolin Wang <baolin.wang7@gmail.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Link: https://lore.kernel.org/lkml/5e098be25c70e07c37e743f84a901f6f756090e0
.1583461755.git.baolin.wang7@gmail.com/
(cherry picked from commit 241eaabc3c315cdfea505725a43de848f498527f
https://kernel.googlesource.com/pub/scm/linux/kernel/git/next/linux-next)
Bug: 148055746
Signed-off-by: Orson Zhai <orson.zhai@unisoc.com>
Change-Id: I2dbe3d09a4779c64ca2508417e819428638a3629
This commit is contained in:
Baolin Wang 2020-03-06 10:34:10 +08:00 committed by Todd Kjos
parent 9b41023b4e
commit 3ebeb56872
2 changed files with 2 additions and 2 deletions

View File

@ -480,7 +480,7 @@ config CHARGER_GPIO
called gpio-charger.
config CHARGER_MANAGER
bool "Battery charger manager for multiple chargers"
tristate "Battery charger manager for multiple chargers"
depends on REGULATOR
select EXTCON
help

View File

@ -248,7 +248,7 @@ struct charger_manager {
u64 charging_end_time;
};
#ifdef CONFIG_CHARGER_MANAGER
#if IS_ENABLED(CONFIG_CHARGER_MANAGER)
extern void cm_notify_event(struct power_supply *psy,
enum cm_event_types type, char *msg);
#else