Commit 595a23fe authored by Hans Wennborg's avatar Hans Wennborg Committed by John W. Linville

iwl4965: fix %d confusingly prefixed with 0x in format string

Signed-off-by: default avatarHans Wennborg <hans@hanshq.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1716bcf3
......@@ -4633,7 +4633,7 @@ il4965_store_tx_power(struct device *d, struct device_attribute *attr,
else {
ret = il_set_tx_power(il, val, false);
if (ret)
IL_ERR("failed setting tx power (0x%d).\n", ret);
IL_ERR("failed setting tx power (0x%08x).\n", ret);
else
ret = count;
}
......
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