diff options
author | Bradley Grove <bgrove@attotech.com> | 2013-10-01 14:26:04 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-10-25 04:58:59 -0400 |
commit | 0f3c7b99f33f7a9c743a752bba2414615c48e270 (patch) | |
tree | 79a4bdfcb085805255b95b55e99d4687756ece44 /drivers/scsi/esas2r/esas2r_vda.c | |
parent | b1cf7a2bc7c372c856cdf542c41d7fe527e4b5d6 (diff) |
[SCSI] esas2r: Cleanup snprinf formatting of firmware version
Signed-off-by: Bradley Grove <bgrove@attotech.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/esas2r/esas2r_vda.c')
-rw-r--r-- | drivers/scsi/esas2r/esas2r_vda.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/esas2r/esas2r_vda.c b/drivers/scsi/esas2r/esas2r_vda.c index 27e97215bb2f..30028e56df63 100644 --- a/drivers/scsi/esas2r/esas2r_vda.c +++ b/drivers/scsi/esas2r/esas2r_vda.c | |||
@@ -310,9 +310,9 @@ static void esas2r_complete_vda_ioctl(struct esas2r_adapter *a, | |||
310 | le32_to_cpu(rsp->vda_version); | 310 | le32_to_cpu(rsp->vda_version); |
311 | cfg->data.init.fw_build = rsp->fw_build; | 311 | cfg->data.init.fw_build = rsp->fw_build; |
312 | 312 | ||
313 | snprintf(buf, sizeof(buf), "%1d.%02d", | 313 | snprintf(buf, sizeof(buf), "%1.1u.%2.2u", |
314 | (int)LOBYTE(le16_to_cpu(rsp->fw_release)), | 314 | (int)LOBYTE(le16_to_cpu(rsp->fw_release)), |
315 | (int)HIBYTE(le16_to_cpu(rsp->fw_release))); | 315 | (int)HIBYTE(le16_to_cpu(rsp->fw_release))); |
316 | 316 | ||
317 | memcpy(&cfg->data.init.fw_release, buf, | 317 | memcpy(&cfg->data.init.fw_release, buf, |
318 | sizeof(cfg->data.init.fw_release)); | 318 | sizeof(cfg->data.init.fw_release)); |