From: Amitoj Kaur Chawla Date: Fri, 16 Oct 2015 16:39:08 +0000 (+0530) Subject: staging: rdma: hfi1: Prefer using BIT Macro X-Git-Tag: v4.14-rc1~4420^2~537 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d32cf44a62716d4fa9e9d8a5d7201a89d936fe5e;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rdma/hfi1/file_ops.c b/drivers/staging/rdma/hfi1/file_ops.c index 7d28680..cbaf4f7 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? */