* [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe()
@ 2018-02-02 17:20 SF Markus Elfring
2018-02-02 17:21 ` [PATCH 1/2] i2c-davinci: Delete an error message for a failed memory allocation in davinci_i2c_probe() SF Markus Elfring
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: SF Markus Elfring @ 2018-02-02 17:20 UTC (permalink / raw)
To: linux-arm-kernel
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Fri, 2 Feb 2018 18:16:14 +0100
Two update suggestions were taken into account
from static source code analysis.
Markus Elfring (2):
Delete an error message for a failed memory allocation
Improve a size determination
drivers/i2c/busses/i2c-davinci.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
--
2.16.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] i2c-davinci: Delete an error message for a failed memory allocation in davinci_i2c_probe()
2018-02-02 17:20 [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() SF Markus Elfring
@ 2018-02-02 17:21 ` SF Markus Elfring
2018-02-02 17:22 ` [PATCH 2/2] i2c-davinci: Improve a size determination " SF Markus Elfring
2018-02-02 17:24 ` [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() Grygorii Strashko
2 siblings, 0 replies; 4+ messages in thread
From: SF Markus Elfring @ 2018-02-02 17:21 UTC (permalink / raw)
To: linux-arm-kernel
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Fri, 2 Feb 2018 18:00:20 +0100
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
drivers/i2c/busses/i2c-davinci.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
index cb24a3ffdfa2..71a9c29b3981 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -784,10 +784,8 @@ static int davinci_i2c_probe(struct platform_device *pdev)
dev = devm_kzalloc(&pdev->dev, sizeof(struct davinci_i2c_dev),
GFP_KERNEL);
- if (!dev) {
- dev_err(&pdev->dev, "Memory allocation failed\n");
+ if (!dev)
return -ENOMEM;
- }
init_completion(&dev->cmd_complete);
#ifdef CONFIG_CPU_FREQ
--
2.16.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] i2c-davinci: Improve a size determination in davinci_i2c_probe()
2018-02-02 17:20 [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() SF Markus Elfring
2018-02-02 17:21 ` [PATCH 1/2] i2c-davinci: Delete an error message for a failed memory allocation in davinci_i2c_probe() SF Markus Elfring
@ 2018-02-02 17:22 ` SF Markus Elfring
2018-02-02 17:24 ` [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() Grygorii Strashko
2 siblings, 0 replies; 4+ messages in thread
From: SF Markus Elfring @ 2018-02-02 17:22 UTC (permalink / raw)
To: linux-arm-kernel
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Fri, 2 Feb 2018 18:02:49 +0100
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
drivers/i2c/busses/i2c-davinci.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
index 71a9c29b3981..1702b1d1b000 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -782,8 +782,7 @@ static int davinci_i2c_probe(struct platform_device *pdev)
return irq;
}
- dev = devm_kzalloc(&pdev->dev, sizeof(struct davinci_i2c_dev),
- GFP_KERNEL);
+ dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
if (!dev)
return -ENOMEM;
--
2.16.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe()
2018-02-02 17:20 [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() SF Markus Elfring
2018-02-02 17:21 ` [PATCH 1/2] i2c-davinci: Delete an error message for a failed memory allocation in davinci_i2c_probe() SF Markus Elfring
2018-02-02 17:22 ` [PATCH 2/2] i2c-davinci: Improve a size determination " SF Markus Elfring
@ 2018-02-02 17:24 ` Grygorii Strashko
2 siblings, 0 replies; 4+ messages in thread
From: Grygorii Strashko @ 2018-02-02 17:24 UTC (permalink / raw)
To: linux-arm-kernel
On 02/02/2018 11:20 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Fri, 2 Feb 2018 18:16:14 +0100
>
> Two update suggestions were taken into account
> from static source code analysis.
>
> Markus Elfring (2):
> Delete an error message for a failed memory allocation
> Improve a size determination
>
> drivers/i2c/busses/i2c-davinci.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
--
regards,
-grygorii
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-02 17:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-02 17:20 [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() SF Markus Elfring
2018-02-02 17:21 ` [PATCH 1/2] i2c-davinci: Delete an error message for a failed memory allocation in davinci_i2c_probe() SF Markus Elfring
2018-02-02 17:22 ` [PATCH 2/2] i2c-davinci: Improve a size determination " SF Markus Elfring
2018-02-02 17:24 ` [PATCH 0/2] I2C-DaVinci: Adjustments for davinci_i2c_probe() Grygorii Strashko
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).