projects
/
wrapfs-5.15.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea6ce93
)
power: rt9455: hide unused rt9455_boost_voltage_values
author
Arnd Bergmann
<arnd@arndb.de>
Wed, 3 Apr 2024 08:06:27 +0000
(10:06 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 17 May 2024 09:50:46 +0000
(11:50 +0200)
[ Upstream commit
452d8950db3e839aba1bb13bc5378f4bac11fa04
]
The rt9455_boost_voltage_values[] array is only used when USB PHY
support is enabled, causing a W=1 warning otherwise:
drivers/power/supply/rt9455_charger.c:200:18: error: 'rt9455_boost_voltage_values' defined but not used [-Werror=unused-const-variable=]
Enclose the definition in the same #ifdef as the references to it.
Fixes: e86d69dd786e ("power_supply: Add support for Richtek RT9455 battery charger")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link:
https://lore.kernel.org/r/20240403080702.3509288-10-arnd@kernel.org
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/power/supply/rt9455_charger.c
patch
|
blob
|
history
diff --git
a/drivers/power/supply/rt9455_charger.c
b/drivers/power/supply/rt9455_charger.c
index 594bb3b8a4d1e0d719d4a8f1ff11ea53fca5b75d..a84afccd509f1f81ae746b2d500f13d5e684d274 100644
(file)
--- a/
drivers/power/supply/rt9455_charger.c
+++ b/
drivers/power/supply/rt9455_charger.c
@@
-193,6
+193,7
@@
static const int rt9455_voreg_values[] = {
4450000, 4450000, 4450000, 4450000, 4450000, 4450000, 4450000, 4450000
};
+#if IS_ENABLED(CONFIG_USB_PHY)
/*
* When the charger is in boost mode, REG02[7:2] represent boost output
* voltage.
@@
-208,6
+209,7
@@
static const int rt9455_boost_voltage_values[] = {
5600000, 5600000, 5600000, 5600000, 5600000, 5600000, 5600000, 5600000,
5600000, 5600000, 5600000, 5600000, 5600000, 5600000, 5600000, 5600000,
};
+#endif
/* REG07[3:0] (VMREG) in uV */
static const int rt9455_vmreg_values[] = {