Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F143568292
D54966.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
841 B
Referenced Files
None
Subscribers
None
D54966.diff
View Options
diff --git a/sys/riscv/riscv/identcpu.c b/sys/riscv/riscv/identcpu.c
--- a/sys/riscv/riscv/identcpu.c
+++ b/sys/riscv/riscv/identcpu.c
@@ -590,7 +590,7 @@
printf(" marchid=%#lx, mimpid=%#lx\n", marchid, mimpid);
if (SHOULD_PRINT(mmu_caps)) {
- printf(" MMU: %#b\n", desc->mmu_caps,
+ printf(" MMU: %b\n", desc->mmu_caps,
"\020"
"\01Sv39"
"\02Sv48"
@@ -598,7 +598,7 @@
}
if (SHOULD_PRINT(isa_extensions)) {
- printf(" ISA: %#b\n", desc->isa_extensions,
+ printf(" ISA: %b\n", desc->isa_extensions,
"\020"
"\01Atomic"
"\03Compressed"
@@ -609,7 +609,7 @@
}
if (SHOULD_PRINT(smode_extensions)) {
- printf(" S-mode Extensions: %#b\n", desc->smode_extensions,
+ printf(" S-mode Extensions: %b\n", desc->smode_extensions,
"\020"
"\01Sstc"
"\02Svnapot"
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jan 31, 10:52 PM (4 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28119572
Default Alt Text
D54966.diff (841 B)
Attached To
Mode
D54966: riscv: Don't use the '#' modifier with '%b'
Attached
Detach File
Event Timeline
Log In to Comment