Page MenuHomeFreeBSD

D36777.diff
No OneTemporary

D36777.diff

diff --git a/sys/dev/msk/if_msk.c b/sys/dev/msk/if_msk.c
--- a/sys/dev/msk/if_msk.c
+++ b/sys/dev/msk/if_msk.c
@@ -4297,11 +4297,11 @@
* lower 16 bits should be the last operation.
*/
#define MSK_READ_MIB32(x, y) \
- (((uint32_t)GMAC_READ_2(sc, x, (y) + 4)) << 16) + \
- (uint32_t)GMAC_READ_2(sc, x, y)
+ ((((uint32_t)GMAC_READ_2(sc, x, (y) + 4)) << 16) + \
+ (uint32_t)GMAC_READ_2(sc, x, y))
#define MSK_READ_MIB64(x, y) \
- (((uint64_t)MSK_READ_MIB32(x, (y) + 8)) << 32) + \
- (uint64_t)MSK_READ_MIB32(x, y)
+ ((((uint64_t)MSK_READ_MIB32(x, (y) + 8)) << 32) + \
+ (uint64_t)MSK_READ_MIB32(x, y))
static void
msk_stats_clear(struct msk_if_softc *sc_if)
@@ -4318,7 +4318,7 @@
GMAC_WRITE_2(sc, sc_if->msk_port, GM_PHY_ADDR, gmac | GM_PAR_MIB_CLR);
/* Read all MIB Counters with Clear Mode set. */
for (i = GM_RXF_UC_OK; i <= GM_TXE_FIFO_UR; i += sizeof(uint32_t))
- MSK_READ_MIB32(sc_if->msk_port, i);
+ (void)MSK_READ_MIB32(sc_if->msk_port, i);
/* Clear MIB Clear Counter Mode. */
gmac &= ~GM_PAR_MIB_CLR;
GMAC_WRITE_2(sc, sc_if->msk_port, GM_PHY_ADDR, gmac);

File Metadata

Mime Type
text/plain
Expires
Sun, Sep 29, 3:30 PM (22 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
13111775
Default Alt Text
D36777.diff (1 KB)

Event Timeline