diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-04-12 04:02:18 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-04-16 02:08:51 -0400 |
commit | cdeb860252e66bdaf1ab70420274df879f243d3d (patch) | |
tree | 156f3adf4122e71f7cfc449c3a63b2a0507ea4e6 /drivers/net/wireless/ath/ath6kl/sdio.c | |
parent | ae9a3405fd28ce05dc3d0b51d541fd5ec742b3b4 (diff) |
ath6kl: merge split format strings into one
Found by checkpatch:
WARNING: quoted string split across lines
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/sdio.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/sdio.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/ath/ath6kl/sdio.c index b41220d1e51e..cfcc3216db15 100644 --- a/drivers/net/wireless/ath/ath6kl/sdio.c +++ b/drivers/net/wireless/ath/ath6kl/sdio.c | |||
@@ -985,9 +985,8 @@ static int ath6kl_set_addrwin_reg(struct ath6kl *ar, u32 reg_addr, u32 addr) | |||
985 | } | 985 | } |
986 | 986 | ||
987 | if (status) { | 987 | if (status) { |
988 | ath6kl_err("%s: failed to write initial bytes of 0x%x " | 988 | ath6kl_err("%s: failed to write initial bytes of 0x%x to window reg: 0x%X\n", |
989 | "to window reg: 0x%X\n", __func__, | 989 | __func__, addr, reg_addr); |
990 | addr, reg_addr); | ||
991 | return status; | 990 | return status; |
992 | } | 991 | } |
993 | 992 | ||
@@ -1076,8 +1075,8 @@ static int ath6kl_sdio_bmi_credits(struct ath6kl *ar) | |||
1076 | (u8 *)&ar->bmi.cmd_credits, 4, | 1075 | (u8 *)&ar->bmi.cmd_credits, 4, |
1077 | HIF_RD_SYNC_BYTE_INC); | 1076 | HIF_RD_SYNC_BYTE_INC); |
1078 | if (ret) { | 1077 | if (ret) { |
1079 | ath6kl_err("Unable to decrement the command credit " | 1078 | ath6kl_err("Unable to decrement the command credit count register: %d\n", |
1080 | "count register: %d\n", ret); | 1079 | ret); |
1081 | return ret; | 1080 | return ret; |
1082 | } | 1081 | } |
1083 | 1082 | ||