* [PATCH 0/2] Input-sur40: Adjustments for sur40_probe()
@ 2018-01-20 21:26 SF Markus Elfring
2018-01-20 21:28 ` [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe() SF Markus Elfring
2018-01-20 21:30 ` [PATCH 2/2] Input: sur40: Improve a size determination " SF Markus Elfring
0 siblings, 2 replies; 5+ messages in thread
From: SF Markus Elfring @ 2018-01-20 21:26 UTC (permalink / raw)
To: linux-input, Dmitry Torokhov, Florian Echtler, Johan Hovold,
Martin Kaltenbrunner, Martin Kepplinger
Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 20 Jan 2018 22:20:10 +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/input/touchscreen/sur40.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--
2.15.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe()
2018-01-20 21:26 [PATCH 0/2] Input-sur40: Adjustments for sur40_probe() SF Markus Elfring
@ 2018-01-20 21:28 ` SF Markus Elfring
2018-01-22 7:00 ` Martin Kepplinger
2018-01-20 21:30 ` [PATCH 2/2] Input: sur40: Improve a size determination " SF Markus Elfring
1 sibling, 1 reply; 5+ messages in thread
From: SF Markus Elfring @ 2018-01-20 21:28 UTC (permalink / raw)
To: linux-input, Dmitry Torokhov, Florian Echtler, Johan Hovold,
Martin Kaltenbrunner, Martin Kepplinger
Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 20 Jan 2018 22:11:24 +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/input/touchscreen/sur40.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
index f16f8358c70a..c7a0a92b2044 100644
--- a/drivers/input/touchscreen/sur40.c
+++ b/drivers/input/touchscreen/sur40.c
@@ -591,7 +591,6 @@ static int sur40_probe(struct usb_interface *interface,
sur40->bulk_in_epaddr = endpoint->bEndpointAddress;
sur40->bulk_in_buffer = kmalloc(sur40->bulk_in_size, GFP_KERNEL);
if (!sur40->bulk_in_buffer) {
- dev_err(&interface->dev, "Unable to allocate input buffer.");
error = -ENOMEM;
goto err_free_polldev;
}
--
2.15.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] Input: sur40: Improve a size determination in sur40_probe()
2018-01-20 21:26 [PATCH 0/2] Input-sur40: Adjustments for sur40_probe() SF Markus Elfring
2018-01-20 21:28 ` [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe() SF Markus Elfring
@ 2018-01-20 21:30 ` SF Markus Elfring
2018-01-22 7:02 ` Martin Kepplinger
1 sibling, 1 reply; 5+ messages in thread
From: SF Markus Elfring @ 2018-01-20 21:30 UTC (permalink / raw)
To: linux-input, Dmitry Torokhov, Florian Echtler, Johan Hovold,
Martin Kaltenbrunner, Martin Kepplinger
Cc: LKML, kernel-janitors
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 20 Jan 2018 22:16:14 +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/input/touchscreen/sur40.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
index c7a0a92b2044..946e1a0328b4 100644
--- a/drivers/input/touchscreen/sur40.c
+++ b/drivers/input/touchscreen/sur40.c
@@ -550,7 +550,7 @@ static int sur40_probe(struct usb_interface *interface,
return -ENODEV;
/* Allocate memory for our device state and initialize it. */
- sur40 = kzalloc(sizeof(struct sur40_state), GFP_KERNEL);
+ sur40 = kzalloc(sizeof(*sur40), GFP_KERNEL);
if (!sur40)
return -ENOMEM;
--
2.15.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe()
2018-01-20 21:28 ` [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe() SF Markus Elfring
@ 2018-01-22 7:00 ` Martin Kepplinger
0 siblings, 0 replies; 5+ messages in thread
From: Martin Kepplinger @ 2018-01-22 7:00 UTC (permalink / raw)
To: SF Markus Elfring, linux-input, Dmitry Torokhov, Florian Echtler,
Johan Hovold, Martin Kaltenbrunner
Cc: LKML, kernel-janitors
On 2018-01-20 22:28, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sat, 20 Jan 2018 22:11:24 +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>
Acked-by: Martin Kepplinger <martink@posteo.de>
> ---
> drivers/input/touchscreen/sur40.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
> index f16f8358c70a..c7a0a92b2044 100644
> --- a/drivers/input/touchscreen/sur40.c
> +++ b/drivers/input/touchscreen/sur40.c
> @@ -591,7 +591,6 @@ static int sur40_probe(struct usb_interface *interface,
> sur40->bulk_in_epaddr = endpoint->bEndpointAddress;
> sur40->bulk_in_buffer = kmalloc(sur40->bulk_in_size, GFP_KERNEL);
> if (!sur40->bulk_in_buffer) {
> - dev_err(&interface->dev, "Unable to allocate input buffer.");
> error = -ENOMEM;
> goto err_free_polldev;
> }
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] Input: sur40: Improve a size determination in sur40_probe()
2018-01-20 21:30 ` [PATCH 2/2] Input: sur40: Improve a size determination " SF Markus Elfring
@ 2018-01-22 7:02 ` Martin Kepplinger
0 siblings, 0 replies; 5+ messages in thread
From: Martin Kepplinger @ 2018-01-22 7:02 UTC (permalink / raw)
To: SF Markus Elfring, linux-input, Dmitry Torokhov, Florian Echtler,
Johan Hovold, Martin Kaltenbrunner
Cc: LKML, kernel-janitors
On 2018-01-20 22:30, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sat, 20 Jan 2018 22:16:14 +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>
Acked-by: Martin Kepplinger <martink@posteo.de>
> ---
> drivers/input/touchscreen/sur40.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
> index c7a0a92b2044..946e1a0328b4 100644
> --- a/drivers/input/touchscreen/sur40.c
> +++ b/drivers/input/touchscreen/sur40.c
> @@ -550,7 +550,7 @@ static int sur40_probe(struct usb_interface *interface,
> return -ENODEV;
>
> /* Allocate memory for our device state and initialize it. */
> - sur40 = kzalloc(sizeof(struct sur40_state), GFP_KERNEL);
> + sur40 = kzalloc(sizeof(*sur40), GFP_KERNEL);
> if (!sur40)
> return -ENOMEM;
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-22 7:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-20 21:26 [PATCH 0/2] Input-sur40: Adjustments for sur40_probe() SF Markus Elfring
2018-01-20 21:28 ` [PATCH 1/2] Input: sur40: Delete an error message for a failed memory allocation in sur40_probe() SF Markus Elfring
2018-01-22 7:00 ` Martin Kepplinger
2018-01-20 21:30 ` [PATCH 2/2] Input: sur40: Improve a size determination " SF Markus Elfring
2018-01-22 7:02 ` Martin Kepplinger
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).