All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] staging: Prefer using BIT Macro
@ 2015-10-16 16:37 Amitoj Kaur Chawla
  2015-10-16 16:39 ` [PATCH 1/5] staging: rdma: hfi1: " Amitoj Kaur Chawla
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Amitoj Kaur Chawla @ 2015-10-16 16:37 UTC (permalink / raw)
  To: outreachy-kernel

This patchset replaces bit shifting on 1 with the BIT(x) Macro

The semantic patch used to find this is:
@@ int g; @@

-(1 << g)
+BIT(g)

Amitoj Kaur Chawla (5):
  staging: rdma: hfi1: Prefer using BIT Macro
  staging: rdma: amso1100: Prefer using BIT Macro
  staging: panel: Prefer using BIT Macro
  staging: vt6656: Prefer using BIT Macro
  staging: vt6655: Prefer using BIT Macro

 drivers/staging/panel/panel.c               | 6 +++---
 drivers/staging/rdma/amso1100/c2_provider.c | 6 +++---
 drivers/staging/rdma/hfi1/file_ops.c        | 2 +-
 drivers/staging/vt6655/card.c               | 2 +-
 drivers/staging/vt6656/card.c               | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

-- 
1.9.1



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

end of thread, other threads:[~2015-10-16 16:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-16 16:37 [PATCH 0/5] staging: Prefer using BIT Macro Amitoj Kaur Chawla
2015-10-16 16:39 ` [PATCH 1/5] staging: rdma: hfi1: " Amitoj Kaur Chawla
2015-10-16 16:40 ` [PATCH 2/5] staging: rdma: amso1100: " Amitoj Kaur Chawla
2015-10-16 16:41 ` [PATCH 3/5] staging: panel: " Amitoj Kaur Chawla
2015-10-16 16:42 ` [PATCH 4/5] staging: vt6656: " Amitoj Kaur Chawla
2015-10-16 16:43 ` [PATCH 5/5] staging: vt6655: " Amitoj Kaur Chawla

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.