mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 14:12:07 +02:00
parisc/unaligned: Fix hex output to show 8 hex chars
Change back printk format to 0x%08lx instead of %#08lx, since the latter
does not seem to reliably format the value to 8 hex chars.
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: stable@vger.kernel.org # v5.18+
Fixes: e5e9e7f222 ("parisc/unaligned: Enhance user-space visible output")
This commit is contained in:
parent
7cbb015e2d
commit
213205889d
|
|
@ -25,7 +25,7 @@
|
|||
#define DPRINTF(fmt, args...)
|
||||
#endif
|
||||
|
||||
#define RFMT "%#08lx"
|
||||
#define RFMT "0x%08lx"
|
||||
|
||||
/* 1111 1100 0000 0000 0001 0011 1100 0000 */
|
||||
#define OPCODE1(a,b,c) ((a)<<26|(b)<<12|(c)<<6)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user