* [PATCH] power: supply: cros_usbpd: Don't show messages for no charging ports found
@ 2024-04-06 19:17 Mario Limonciello
2024-04-08 6:29 ` Tzung-Bi Shih
0 siblings, 1 reply; 2+ messages in thread
From: Mario Limonciello @ 2024-04-06 19:17 UTC (permalink / raw)
To: Benson Leung, Guenter Roeck
Cc: Sebastian Reichel, open list:CHROMEOS EC SUBDRIVERS,
open list:POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS, open list,
Dustin L . Howett, Mario Limonciello
From: Mario Limonciello <mario.limonciello@amd.com>
Framework 13 and 16 don't use cros_usbpd but do use cros_ec. The following
sequence of messages is totally unnecessary.
[ 5.545352] cros-usbpd-charger cros-usbpd-charger.4.auto: No USB PD
charging ports found
[ 5.546722] cros-usbpd-charger cros-usbpd-charger.4.auto: Unexpected
number of charge port count
[ 5.546730] cros-usbpd-charger cros-usbpd-charger.4.auto: Failing
probe (err:0xffffffb9)
[ 5.546735] cros-usbpd-charger cros-usbpd-charger.4.auto: probe with
driver cros-usbpd-charger failed with error -71
Link: https://lore.kernel.org/chrome-platform/20240403004713.130365-1-dustin@howett.net/
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
drivers/power/supply/cros_usbpd-charger.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/power/supply/cros_usbpd-charger.c b/drivers/power/supply/cros_usbpd-charger.c
index b6c96376776a..4e69da2cce7b 100644
--- a/drivers/power/supply/cros_usbpd-charger.c
+++ b/drivers/power/supply/cros_usbpd-charger.c
@@ -570,7 +570,8 @@ static int cros_usbpd_charger_probe(struct platform_device *pd)
* This can happen on a system that doesn't support USB PD.
* Log a message, but no need to warn.
*/
- dev_info(dev, "No USB PD charging ports found\n");
+ dev_dbg(dev, "No USB PD charging ports found\n");
+ return -ENODEV;
}
charger->num_charger_ports = cros_usbpd_charger_get_num_ports(charger);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] power: supply: cros_usbpd: Don't show messages for no charging ports found
2024-04-06 19:17 [PATCH] power: supply: cros_usbpd: Don't show messages for no charging ports found Mario Limonciello
@ 2024-04-08 6:29 ` Tzung-Bi Shih
0 siblings, 0 replies; 2+ messages in thread
From: Tzung-Bi Shih @ 2024-04-08 6:29 UTC (permalink / raw)
To: Mario Limonciello
Cc: Benson Leung, Guenter Roeck, Sebastian Reichel,
open list:CHROMEOS EC SUBDRIVERS,
open list:POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS, open list,
Dustin L . Howett, Mario Limonciello
On Sat, Apr 06, 2024 at 02:17:34PM -0500, Mario Limonciello wrote:
> From: Mario Limonciello <mario.limonciello@amd.com>
>
> Framework 13 and 16 don't use cros_usbpd but do use cros_ec. The following
> sequence of messages is totally unnecessary.
In the case, the EC firmware shouldn't report the feature. See [1].
[1]: https://elixir.bootlin.com/linux/v6.8/source/drivers/mfd/cros_ec_dev.c#L106
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-04-08 6:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-06 19:17 [PATCH] power: supply: cros_usbpd: Don't show messages for no charging ports found Mario Limonciello
2024-04-08 6:29 ` Tzung-Bi Shih
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).