* [PATCH] mfd: tps6594: Add null pointer check to tps6594_device_init
@ 2023-12-05 9:54 Kunwu Chan
2023-12-07 16:10 ` Lee Jones
0 siblings, 1 reply; 3+ messages in thread
From: Kunwu Chan @ 2023-12-05 9:54 UTC (permalink / raw)
To: lee, jpanis; +Cc: kunwu.chan, linux-kernel, Kunwu Chan
devm_kasprintf() returns a pointer to dynamically allocated memory
which can be NULL upon failure.
Fixes: 325bec7157b3 ("mfd: tps6594: Add driver for TI TPS6594 PMIC")
Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
---
drivers/mfd/tps6594-core.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/mfd/tps6594-core.c b/drivers/mfd/tps6594-core.c
index 0fb9c5cf213a..6403c1063de9 100644
--- a/drivers/mfd/tps6594-core.c
+++ b/drivers/mfd/tps6594-core.c
@@ -433,6 +433,9 @@ int tps6594_device_init(struct tps6594 *tps, bool enable_crc)
tps6594_irq_chip.name = devm_kasprintf(dev, GFP_KERNEL, "%s-%ld-0x%02x",
dev->driver->name, tps->chip_id, tps->reg);
+ if (!tps6594_irq_chip.name)
+ return dev_err_probe(dev, -ENOMEM, "Failed to allocate memory\n");
+
ret = devm_regmap_add_irq_chip(dev, tps->regmap, tps->irq, IRQF_SHARED | IRQF_ONESHOT,
0, &tps6594_irq_chip, &tps->irq_data);
if (ret)
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mfd: tps6594: Add null pointer check to tps6594_device_init
2023-12-05 9:54 [PATCH] mfd: tps6594: Add null pointer check to tps6594_device_init Kunwu Chan
@ 2023-12-07 16:10 ` Lee Jones
2023-12-08 3:24 ` Kunwu Chan
0 siblings, 1 reply; 3+ messages in thread
From: Lee Jones @ 2023-12-07 16:10 UTC (permalink / raw)
To: Kunwu Chan; +Cc: jpanis, kunwu.chan, linux-kernel
On Tue, 05 Dec 2023, Kunwu Chan wrote:
> devm_kasprintf() returns a pointer to dynamically allocated memory
> which can be NULL upon failure.
>
> Fixes: 325bec7157b3 ("mfd: tps6594: Add driver for TI TPS6594 PMIC")
> Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
> ---
> drivers/mfd/tps6594-core.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/mfd/tps6594-core.c b/drivers/mfd/tps6594-core.c
> index 0fb9c5cf213a..6403c1063de9 100644
> --- a/drivers/mfd/tps6594-core.c
> +++ b/drivers/mfd/tps6594-core.c
> @@ -433,6 +433,9 @@ int tps6594_device_init(struct tps6594 *tps, bool enable_crc)
> tps6594_irq_chip.name = devm_kasprintf(dev, GFP_KERNEL, "%s-%ld-0x%02x",
> dev->driver->name, tps->chip_id, tps->reg);
>
> + if (!tps6594_irq_chip.name)
> + return dev_err_probe(dev, -ENOMEM, "Failed to allocate memory\n");
> +
The check is fine, but the use of dev_err_probe() is not.
Simply:
return -ENOMEM;
> ret = devm_regmap_add_irq_chip(dev, tps->regmap, tps->irq, IRQF_SHARED | IRQF_ONESHOT,
> 0, &tps6594_irq_chip, &tps->irq_data);
> if (ret)
> --
> 2.34.1
>
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mfd: tps6594: Add null pointer check to tps6594_device_init
2023-12-07 16:10 ` Lee Jones
@ 2023-12-08 3:24 ` Kunwu Chan
0 siblings, 0 replies; 3+ messages in thread
From: Kunwu Chan @ 2023-12-08 3:24 UTC (permalink / raw)
To: Lee Jones; +Cc: jpanis, kunwu.chan, linux-kernel
Thanks for your reply.
I'll update the v2 patch:
1. When 'tps6594_irq_chip.name' is null,just return -ENOMEM.
Thanks again,
Kunwu
On 2023/12/8 00:10, Lee Jones wrote:
> On Tue, 05 Dec 2023, Kunwu Chan wrote:
>
>> devm_kasprintf() returns a pointer to dynamically allocated memory
>> which can be NULL upon failure.
>>
>> Fixes: 325bec7157b3 ("mfd: tps6594: Add driver for TI TPS6594 PMIC")
>> Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
>> ---
>> drivers/mfd/tps6594-core.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/mfd/tps6594-core.c b/drivers/mfd/tps6594-core.c
>> index 0fb9c5cf213a..6403c1063de9 100644
>> --- a/drivers/mfd/tps6594-core.c
>> +++ b/drivers/mfd/tps6594-core.c
>> @@ -433,6 +433,9 @@ int tps6594_device_init(struct tps6594 *tps, bool enable_crc)
>> tps6594_irq_chip.name = devm_kasprintf(dev, GFP_KERNEL, "%s-%ld-0x%02x",
>> dev->driver->name, tps->chip_id, tps->reg);
>>
>> + if (!tps6594_irq_chip.name)
>> + return dev_err_probe(dev, -ENOMEM, "Failed to allocate memory\n");
>> +
>
> The check is fine, but the use of dev_err_probe() is not.
>
> Simply:
>
> return -ENOMEM;
>
>> ret = devm_regmap_add_irq_chip(dev, tps->regmap, tps->irq, IRQF_SHARED | IRQF_ONESHOT,
>> 0, &tps6594_irq_chip, &tps->irq_data);
>> if (ret)
>> --
>> 2.34.1
>>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-12-08 3:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-05 9:54 [PATCH] mfd: tps6594: Add null pointer check to tps6594_device_init Kunwu Chan
2023-12-07 16:10 ` Lee Jones
2023-12-08 3:24 ` Kunwu Chan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox