Message ID | 152416898648.71364.15417323482028209640.stgit@bhelgaas-glaptop.roam.corp.google.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
diff --git a/ls-caps.c b/ls-caps.c index 3135224..bc7829c 100644 --- a/ls-caps.c +++ b/ls-caps.c @@ -1599,7 +1599,7 @@ show_caps(struct device *d, int where) cap_ea(d, where, cap); break; default: - printf("#%02x [%04x]\n", id, cap); + printf("Capability ID %#02x [%04x]\n", id, cap); } where = next; } diff --git a/ls-ecaps.c b/ls-ecaps.c index 800a032..cb3d46d 100644 --- a/ls-ecaps.c +++ b/ls-ecaps.c @@ -802,7 +802,7 @@ show_ext_caps(struct device *d, int type) cap_ptm(d, where); break; default: - printf("#%02x\n", id); + printf("Extended Capability ID %#02x\n", id); break; } where = (header >> 20) & ~3;