mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
a3fa71c40f
In struct wl18xx_acx_rx_rate_stat, rx_frames_per_rates field is an
array, not a number. This means WL18XX_DEBUGFS_FWSTATS_FILE can't be
used to display this field in debugfs (it would display a pointer, not
the actual data). Use WL18XX_DEBUGFS_FWSTATS_FILE_ARRAY instead.
This bug has been found by adding a __printf attribute to
wl1271_format_buffer. gcc complained about "format '%u' expects
argument of type 'unsigned int', but argument 5 has type 'u32 *'".
Fixes:
|
||
---|---|---|
.. | ||
acx.c | ||
acx.h | ||
cmd.c | ||
cmd.h | ||
conf.h | ||
debugfs.c | ||
debugfs.h | ||
event.c | ||
event.h | ||
io.c | ||
io.h | ||
Kconfig | ||
main.c | ||
Makefile | ||
reg.h | ||
scan.c | ||
scan.h | ||
tx.c | ||
tx.h | ||
wl18xx.h |