Commit 66c0933b authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: rdma: hfi1: chip: Remove wrapper function

Drop wrapper function remap_receive_available_interrupt() that wraps a
call to remap_intr() with the only difference being the addition of
macro IS_RCVAVAIL_START to the second argument of remap_intr().

Both the function names give the same information so the wrapper
function can be dropped.
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8edf7502
...@@ -8840,12 +8840,6 @@ static void remap_sdma_interrupts(struct hfi1_devdata *dd, ...@@ -8840,12 +8840,6 @@ static void remap_sdma_interrupts(struct hfi1_devdata *dd,
msix_intr); msix_intr);
} }
static void remap_receive_available_interrupt(struct hfi1_devdata *dd,
int rx, int msix_intr)
{
remap_intr(dd, IS_RCVAVAIL_START + rx, msix_intr);
}
static int request_intx_irq(struct hfi1_devdata *dd) static int request_intx_irq(struct hfi1_devdata *dd)
{ {
int ret; int ret;
...@@ -8983,7 +8977,7 @@ static int request_msix_irqs(struct hfi1_devdata *dd) ...@@ -8983,7 +8977,7 @@ static int request_msix_irqs(struct hfi1_devdata *dd)
snprintf(me->name, sizeof(me->name), snprintf(me->name, sizeof(me->name),
DRIVER_NAME"_%d kctxt%d", dd->unit, idx); DRIVER_NAME"_%d kctxt%d", dd->unit, idx);
err_info = "receive context"; err_info = "receive context";
remap_receive_available_interrupt(dd, idx, i); remap_intr(dd, IS_RCVAVAIL_START + idx, i);
} else { } else {
/* not in our expected range - complain, then /* not in our expected range - complain, then
ignore it */ ignore it */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment