All of lore.kernel.org
 help / color / mirror / Atom feed
* Submitted a first patch and no reply
@ 2015-01-08 20:00 shirish gajera
  2015-01-08 20:32 ` Valdis.Kletnieks at vt.edu
  2015-01-09 16:55 ` Submitted a first patch and no reply michi1 at michaelblizek.twilightparadox.com
  0 siblings, 2 replies; 9+ messages in thread
From: shirish gajera @ 2015-01-08 20:00 UTC (permalink / raw)
  To: kernelnewbies

Hi,

I have submitted my first patch on 12/30/2014 and I have not received any
reply for next step like error or merge ect.

I send the email to person that get_maintainer.pl script tells me to send.

Please guide whom should I reached for this.

 Below is the email
---------
This patch fixes the checkpatch.pl warning:

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

I have added single statement in curly braces, because it was giving
me "WARNING: macros should not use a trailing semicolon".

Signed-off-by: Shirish Gajera <gajerashirish@gmail.com>
---
 drivers/staging/skein/skein_block.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/skein/skein_block.c
b/drivers/staging/skein/skein_block.c
index 66261ab..5f46cd6 100644
--- a/drivers/staging/skein/skein_block.c
+++ b/drivers/staging/skein/skein_block.c
@@ -82,10 +82,10 @@ do {
                  \
 } while (0)
 #else
 /* looping version */
-#define R256(p0, p1, p2, p3, ROT, r_num) \
-do { \
-       ROUND256(p0, p1, p2, p3, ROT, r_num); \
-} while (0)
+#define R256(p0, p1, p2, p3, ROT, r_num)        \
+{                                              \
+       ROUND256(p0, p1, p2, p3, ROT, r_num);   \
+}

 #define I256(R) \
 do { \

---------------------------


Thanks,
Shirish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20150108/63ccf957/attachment.html 

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-01-09 16:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-08 20:00 Submitted a first patch and no reply shirish gajera
2015-01-08 20:32 ` Valdis.Kletnieks at vt.edu
2015-01-08 20:37   ` shirish gajera
2015-01-08 20:49     ` Valdis.Kletnieks at vt.edu
2015-01-08 21:14       ` Joe Perches
2015-01-08 21:25         ` shirish gajera
2015-01-08 21:31       ` [PATCH] checkpatch: Allow comments in macros tested for single statements Joe Perches
2015-01-08 21:31         ` Joe Perches
2015-01-09 16:55 ` Submitted a first patch and no reply michi1 at michaelblizek.twilightparadox.com

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.