All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Remove multiple assignments
@ 2016-02-13  6:14 Bhumika Goyal
  2016-02-13  6:18 ` [PATCH 1/2] Staging: wlan-ng: " Bhumika Goyal
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Bhumika Goyal @ 2016-02-13  6:14 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: Bhumika Goyal

This patchset removes multiple assignment by factorizing them.
Made a coccinelle script to match cases:
@@
identifier a,b;
constant c;
@@
-a=b=c;
+a=c;
+b=c;

Bhumika Goyal (2):
  Staging: wlan-ng: Remove multiple assignments
  Staging: media: Remove multiple assignments

 drivers/staging/media/davinci_vpfe/dm365_isif.c | 3 ++-
 drivers/staging/wlan-ng/p80211wep.c             | 6 ++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

-- 
1.9.1



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

end of thread, other threads:[~2016-02-13 18:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-13  6:14 [PATCH 0/2] Remove multiple assignments Bhumika Goyal
2016-02-13  6:18 ` [PATCH 1/2] Staging: wlan-ng: " Bhumika Goyal
2016-02-13  6:19 ` [PATCH 2/2] Staging: media: " Bhumika Goyal
2016-02-13  6:31 ` [Outreachy kernel] [PATCH 0/2] " Julia Lawall
2016-02-13  8:28   ` Bhumika Goyal
2016-02-13 18:31     ` Julia Lawall

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.