mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
IB/ipath: Remove some useless (void) casts
Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
928e3e4bb9
commit
8c641d4b5f
@ -1243,10 +1243,10 @@ reloop:
|
|||||||
lval = dd->ipath_rhdrhead_intr_off | l;
|
lval = dd->ipath_rhdrhead_intr_off | l;
|
||||||
else
|
else
|
||||||
lval = l;
|
lval = l;
|
||||||
(void)ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
|
ipath_write_ureg(dd, ur_rcvhdrhead, lval, 0);
|
||||||
if (updegr) {
|
if (updegr) {
|
||||||
(void)ipath_write_ureg(dd, ur_rcvegrindexhead,
|
ipath_write_ureg(dd, ur_rcvegrindexhead,
|
||||||
etail, 0);
|
etail, 0);
|
||||||
updegr = 0;
|
updegr = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -495,12 +495,12 @@ static void enable_chip(struct ipath_devdata *dd,
|
|||||||
* head values to match.
|
* head values to match.
|
||||||
*/
|
*/
|
||||||
val = ipath_read_ureg32(dd, ur_rcvegrindextail, 0);
|
val = ipath_read_ureg32(dd, ur_rcvegrindextail, 0);
|
||||||
(void)ipath_write_ureg(dd, ur_rcvegrindexhead, val, 0);
|
ipath_write_ureg(dd, ur_rcvegrindexhead, val, 0);
|
||||||
|
|
||||||
/* Initialize so we interrupt on next packet received */
|
/* Initialize so we interrupt on next packet received */
|
||||||
(void)ipath_write_ureg(dd, ur_rcvhdrhead,
|
ipath_write_ureg(dd, ur_rcvhdrhead,
|
||||||
dd->ipath_rhdrhead_intr_off |
|
dd->ipath_rhdrhead_intr_off |
|
||||||
dd->ipath_pd[0]->port_head, 0);
|
dd->ipath_pd[0]->port_head, 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* by now pioavail updates to memory should have occurred, so
|
* by now pioavail updates to memory should have occurred, so
|
||||||
@ -769,8 +769,8 @@ int ipath_init_chip(struct ipath_devdata *dd, int reinit)
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
(void)ipath_write_kreg(dd, dd->ipath_kregs->kr_sendpioavailaddr,
|
ipath_write_kreg(dd, dd->ipath_kregs->kr_sendpioavailaddr,
|
||||||
dd->ipath_pioavailregs_phys);
|
dd->ipath_pioavailregs_phys);
|
||||||
/*
|
/*
|
||||||
* this is to detect s/w errors, which the h/w works around by
|
* this is to detect s/w errors, which the h/w works around by
|
||||||
* ignoring the low 6 bits of address, if it wasn't aligned.
|
* ignoring the low 6 bits of address, if it wasn't aligned.
|
||||||
|
Loading…
Reference in New Issue
Block a user