Commit c54f2c7f authored by Matthew Wilcox's avatar Matthew Wilcox Committed by David Mosberger

[PATCH] ia64: SAL version is not zero-padded

The SAL version is encoded as a BCD number, but shouldn't be zero-padded.
parent 934b6519
...@@ -106,7 +106,7 @@ ia64_sal_init (struct ia64_sal_systab *systab) ...@@ -106,7 +106,7 @@ ia64_sal_init (struct ia64_sal_systab *systab)
/* /*
* revisions are coded in BCD, so %x does the job for us * revisions are coded in BCD, so %x does the job for us
*/ */
printk(KERN_INFO "SAL v%x.%02x: oem=%.32s, product=%.32s\n", printk(KERN_INFO "SAL v%x.%x: oem=%.32s, product=%.32s\n",
systab->sal_rev_major, systab->sal_rev_minor, systab->sal_rev_major, systab->sal_rev_minor,
systab->oem_id, systab->product_id); systab->oem_id, systab->product_id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment