[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <46a562b5-6984-3b41-3c41-c346107b4c96@linaro.org>
Date: Thu, 24 Aug 2023 14:40:10 +0200
From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
To: Emmanuel Gil Peyrot <linkmauve@...kmauve.fr>
Cc: Alexandre Courbot <acourbot@...dia.com>,
azkali <a.ffcc7@...il.com>, CTCaer <ctcaer@...il.com>,
Sebastian Reichel <sre@...nel.org>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Conor Dooley <conor+dt@...nel.org>, linux-pm@...r.kernel.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] power: supply: bq24190: Support bq24193
On 24/08/2023 13:27, Emmanuel Gil Peyrot wrote:
> From: Alexandre Courbot <acourbot@...dia.com>
>
> This charger is working with the driver as-is, so enable it to be probed.
>
> It is used in the Nintendo Switch for instance.
>
> Signed-off-by: Alexandre Courbot <acourbot@...dia.com>
> ---
> Documentation/devicetree/bindings/power/supply/bq24190.yaml | 1 +
> drivers/power/supply/bq24190_charger.c | 2 ++
Please run scripts/checkpatch.pl and fix reported warnings. Some
warnings can be ignored, but the code here looks like it needs a fix.
Feel free to get in touch if the warning is not clear.
Bindings are always separate.
Please use subject prefixes matching the subsystem. You can get them for
example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
your patch is touching.
> 2 files changed, 3 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/power/supply/bq24190.yaml b/Documentation/devicetree/bindings/power/supply/bq24190.yaml
> index d3ebc9de8c0b..92a28d3c3070 100644
> --- a/Documentation/devicetree/bindings/power/supply/bq24190.yaml
> +++ b/Documentation/devicetree/bindings/power/supply/bq24190.yaml
> @@ -18,6 +18,7 @@ properties:
> enum:
> - ti,bq24190
> - ti,bq24192
> + - ti,bq24193
> - ti,bq24192i
> - ti,bq24196
>
> diff --git a/drivers/power/supply/bq24190_charger.c b/drivers/power/supply/bq24190_charger.c
> index ef8235848f56..a56122b39687 100644
> --- a/drivers/power/supply/bq24190_charger.c
> +++ b/drivers/power/supply/bq24190_charger.c
> @@ -2018,6 +2018,7 @@ static const struct dev_pm_ops bq24190_pm_ops = {
> static const struct i2c_device_id bq24190_i2c_ids[] = {
> { "bq24190" },
> { "bq24192" },
> + { "bq24193" },
> { "bq24192i" },
> { "bq24196" },
> { },
> @@ -2027,6 +2028,7 @@ MODULE_DEVICE_TABLE(i2c, bq24190_i2c_ids);
> static const struct of_device_id bq24190_of_match[] = {
> { .compatible = "ti,bq24190", },
> { .compatible = "ti,bq24192", },
> + { .compatible = "ti,bq24193", },
> { .compatible = "ti,bq24192i", },
> { .compatible = "ti,bq24196", },
We should really stop doing this. All of them are compatible, aren't they?
Best regards,
Krzysztof
Powered by blists - more mailing lists