diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-01-03 15:16:34 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-03 15:16:34 -0500 |
commit | 57adc1fcbae2c13104ce291b40f23e40a414fa87 (patch) | |
tree | a22d95cd3a96cbd515cd24fb0833739576c5e92f /drivers/net/wireless/ath/ath6kl/debug.c | |
parent | faa85aa24286a9e14ae7cc797352350c3ac39986 (diff) | |
parent | dc0d633e35643662f27a0b1c531da3cd6b204b9c (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
Conflicts:
drivers/net/wireless/b43/dma.c
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/debug.c b/drivers/net/wireless/ath/ath6kl/debug.c index 9eff0d010bb..eb808b46f94 100644 --- a/drivers/net/wireless/ath/ath6kl/debug.c +++ b/drivers/net/wireless/ath/ath6kl/debug.c | |||
@@ -1551,10 +1551,10 @@ static ssize_t ath6kl_listen_int_read(struct file *file, | |||
1551 | size_t count, loff_t *ppos) | 1551 | size_t count, loff_t *ppos) |
1552 | { | 1552 | { |
1553 | struct ath6kl *ar = file->private_data; | 1553 | struct ath6kl *ar = file->private_data; |
1554 | char buf[16]; | 1554 | char buf[32]; |
1555 | int len; | 1555 | int len; |
1556 | 1556 | ||
1557 | len = snprintf(buf, sizeof(buf), "%u %u\n", ar->listen_intvl_t, | 1557 | len = scnprintf(buf, sizeof(buf), "%u %u\n", ar->listen_intvl_t, |
1558 | ar->listen_intvl_b); | 1558 | ar->listen_intvl_b); |
1559 | 1559 | ||
1560 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); | 1560 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |