diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2015-10-16 22:09:08 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-16 23:02:55 -0700 |
commit | d32cf44a62716d4fa9e9d8a5d7201a89d936fe5e (patch) | |
tree | 86f82e7ae89f1bc9b9be5d7e7c7ec6a30d15087e /drivers/staging/rdma | |
parent | 0bfe513cac8cf0655489e0e6dd5e7dd3cb2b5927 (diff) | |
download | blackbird-op-linux-d32cf44a62716d4fa9e9d8a5d7201a89d936fe5e.tar.gz blackbird-op-linux-d32cf44a62716d4fa9e9d8a5d7201a89d936fe5e.zip |
staging: rdma: hfi1: Prefer using BIT Macro
Replace bit shifting on 1 with the BIT(x) Macro
The semantic patch used to find this is:
@@ int g; @@
-(1 << g)
+BIT(g)
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rdma')
-rw-r--r-- | drivers/staging/rdma/hfi1/file_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rdma/hfi1/file_ops.c b/drivers/staging/rdma/hfi1/file_ops.c index 7d2868050981..cbaf4f734add 100644 --- a/drivers/staging/rdma/hfi1/file_ops.c +++ b/drivers/staging/rdma/hfi1/file_ops.c @@ -508,7 +508,7 @@ static int hfi1_file_mmap(struct file *fp, struct vm_area_struct *vma) case PIO_BUFS_SOP: memaddr = ((dd->physaddr + TXE_PIO_SEND) + /* chip pio base */ - (uctxt->sc->hw_context * (1 << 16))) + + (uctxt->sc->hw_context * BIT(16))) + /* 64K PIO space / ctxt */ (type == PIO_BUFS_SOP ? (TXE_PIO_SIZE / 2) : 0); /* sop? */ |