mirror of
https://github.com/torvalds/linux.git
synced 2025-11-07 20:19:47 +02:00
There is no need to use hex_dump_to_buffer() in the cases like this:
hexdump_to_buffer(buf, len, 16, 1, outbuf, outlen, false); /* len <= 16 */
sprintf("%s\n", outbuf);
since it maybe easily converted to simple:
sprintf("%*ph\n", len, buf);
Note: it seems in the case the output is groupped by 2 bytes and looks like a
typo. Thus, patch changes that to plain byte stream.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
||
|---|---|---|
| .. | ||
| 3945-debug.c | ||
| 3945-mac.c | ||
| 3945-rs.c | ||
| 3945.c | ||
| 3945.h | ||
| 4965-calib.c | ||
| 4965-debug.c | ||
| 4965-mac.c | ||
| 4965-rs.c | ||
| 4965.c | ||
| 4965.h | ||
| commands.h | ||
| common.c | ||
| common.h | ||
| csr.h | ||
| debug.c | ||
| iwl-spectrum.h | ||
| Kconfig | ||
| Makefile | ||
| prph.h | ||