View | Details | Raw Unified | Return to bug 197143 | Differences between
and this patch

Collapse All | Expand All

(-)sys/dev/wpi/if_wpi.c (-1 / +1 lines)
Lines 2121-2127 Link Here
2121
			    BUS_DMASYNC_POSTREAD);
2121
			    BUS_DMASYNC_POSTREAD);
2122
			misses = le32toh(miss->consecutive);
2122
			misses = le32toh(miss->consecutive);
2123
2123
2124
			DPRINTF(sc, WPI_DEBUG_STATE,
2124
			DPRINTF(sc, WPI_DEBUG_BMISS,
2125
			    "%s: beacons missed %d/%d\n", __func__, misses,
2125
			    "%s: beacons missed %d/%d\n", __func__, misses,
2126
			    le32toh(miss->total));
2126
			    le32toh(miss->total));
2127
2127
(-)sys/dev/wpi/if_wpi_debug.h (+1 lines)
Lines 43-48 Link Here
43
	WPI_DEBUG_KEY		= 0x00020000,	/* node key management */
43
	WPI_DEBUG_KEY		= 0x00020000,	/* node key management */
44
	WPI_DEBUG_EDCA		= 0x00040000,	/* WME info */
44
	WPI_DEBUG_EDCA		= 0x00040000,	/* WME info */
45
	WPI_DEBUG_REGISTER	= 0x00080000,	/* print chipset register */
45
	WPI_DEBUG_REGISTER	= 0x00080000,	/* print chipset register */
46
	WPI_DEBUG_BMISS		= 0x00100000,	/* print number of missed beacons */
46
	WPI_DEBUG_ANY		= 0xffffffff
47
	WPI_DEBUG_ANY		= 0xffffffff
47
};
48
};
48
49

Return to bug 197143