2015-12-10 18:18:50

by Geyslan G. Bem

[permalink] [raw]
Subject: [PATCH v3 4/9] usb: host: ehci.h: fix single statement macros

Don't use the 'do {} while (0)' wrapper in a single statement macro.

Caught by checkpatch: "WARNING: Single statement macros should not
use a do {} while (0) loop"

Signed-off-by: Geyslan G. Bem <[email protected]>
---
Change in v3:
- There's no need to evaluate COUNT(x) in #ifdef EHCI_STATS
false branch. Thus an empty #define is the choice.
---
drivers/usb/host/ehci.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h
index cfeebd8..c86194f 100644
--- a/drivers/usb/host/ehci.h
+++ b/drivers/usb/host/ehci.h
@@ -244,9 +244,9 @@ struct ehci_hcd { /* one per controller */
/* irq statistics */
#ifdef EHCI_STATS
struct ehci_stats stats;
-# define COUNT(x) do { (x)++; } while (0)
+# define COUNT(x) ((x)++)
#else
-# define COUNT(x) do {} while (0)
+# define COUNT(x)
#endif

/* debug files */
--
2.6.3


2015-12-11 20:25:18

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v3 4/9] usb: host: ehci.h: fix single statement macros

On Thu, Dec 10, 2015 at 03:18:19PM -0300, Geyslan G. Bem wrote:
> Don't use the 'do {} while (0)' wrapper in a single statement macro.
>
> Caught by checkpatch: "WARNING: Single statement macros should not
> use a do {} while (0) loop"
>
> Signed-off-by: Geyslan G. Bem <[email protected]>
> ---
> Change in v3:
> - There's no need to evaluate COUNT(x) in #ifdef EHCI_STATS
> false branch. Thus an empty #define is the choice.

Odd numbering scheme of patches, I can't figure this out...

Can you resend this whole series so I know I got it all correct?

thanks,

greg k-h

2015-12-11 20:55:16

by Geyslan G. Bem

[permalink] [raw]
Subject: Re: [PATCH v3 4/9] usb: host: ehci.h: fix single statement macros

2015-12-11 13:30 GMT-03:00 Greg Kroah-Hartman <[email protected]>:
> On Thu, Dec 10, 2015 at 03:18:19PM -0300, Geyslan G. Bem wrote:
>> Don't use the 'do {} while (0)' wrapper in a single statement macro.
>>
>> Caught by checkpatch: "WARNING: Single statement macros should not
>> use a do {} while (0) loop"
>>
>> Signed-off-by: Geyslan G. Bem <[email protected]>
>> ---
>> Change in v3:
>> - There's no need to evaluate COUNT(x) in #ifdef EHCI_STATS
>> false branch. Thus an empty #define is the choice.
>
> Odd numbering scheme of patches, I can't figure this out...
Greg,

I sent new versions only to modified ones.
9 is v1.
4 is v3.
rest is v2.

Next time I'll send new versions for all.

>
> Can you resend this whole series so I know I got it all correct?
I hope so. :-) Messing around with branches and merges here. I tell you soon.

>
> thanks,
>
> greg k-h



--
Regards,

Geyslan G. Bem
hackingbits.com

2015-12-11 21:29:37

by Geyslan G. Bem

[permalink] [raw]
Subject: Re: [PATCH v3 4/9] usb: host: ehci.h: fix single statement macros

2015-12-11 17:55 GMT-03:00 Geyslan G. Bem <[email protected]>:
> 2015-12-11 13:30 GMT-03:00 Greg Kroah-Hartman <[email protected]>:
>> On Thu, Dec 10, 2015 at 03:18:19PM -0300, Geyslan G. Bem wrote:
>>> Don't use the 'do {} while (0)' wrapper in a single statement macro.
>>>
>>> Caught by checkpatch: "WARNING: Single statement macros should not
>>> use a do {} while (0) loop"
>>>
>>> Signed-off-by: Geyslan G. Bem <[email protected]>
>>> ---
>>> Change in v3:
>>> - There's no need to evaluate COUNT(x) in #ifdef EHCI_STATS
>>> false branch. Thus an empty #define is the choice.
>>
>> Odd numbering scheme of patches, I can't figure this out...
> Greg,
>
> I sent new versions only to modified ones.
> 9 is v1.
> 4 is v3.
> rest is v2.
>
> Next time I'll send new versions for all.
>
>>
>> Can you resend this whole series so I know I got it all correct?
> I hope so. :-) Messing around with branches and merges here. I tell you soon.

Greg, please, grab them.

[PATCH resend 0/9] usb: host: ehci.h cleanup


>
>>
>> thanks,
>>
>> greg k-h
>
>
>
> --
> Regards,
>
> Geyslan G. Bem
> hackingbits.com



--
Regards,

Geyslan G. Bem
hackingbits.com