commit | e4daf738683d9e87caf12f4249268d3c9ed2e00f | [log] [tgz] |
---|---|---|
author | Roland Dreier <rolandd@cisco.com> | Tue Jul 17 18:37:42 2007 -0700 |
committer | Roland Dreier <rolandd@cisco.com> | Tue Jul 17 18:37:42 2007 -0700 |
tree | d3b6d9a7974bf91a192805f10230fbb5af2fcd7f | |
parent | f6be6fbe262d065e85be159ea27460852f13ec90 [diff] |
IB/mthca: Fix printk format used for firmware version in warning When warning about out-of-date firmware, current mthca code messes up the formatting of the version if the subminor doesn't have three digits. It doesn't fill the field with 0s so we end up with: ib_mthca 0000:0b:00.0: HCA FW version 1.1. 0 is old (1.2. 0 is current). Change the format from "%3d" to "%03d" to get the right thing printed. Signed-off-by: Roland Dreier <rolandd@cisco.com>