Commit 51b94bf0 authored by John W. Linville's avatar John W. Linville

mac80211: correct warnings in minstrel rate control algorithm

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d8b105f9
...@@ -94,8 +94,8 @@ minstrel_stats_open(struct inode *inode, struct file *file) ...@@ -94,8 +94,8 @@ minstrel_stats_open(struct inode *inode, struct file *file)
prob / 10, prob % 10, prob / 10, prob % 10,
mr->last_success, mr->last_success,
mr->last_attempts, mr->last_attempts,
mr->succ_hist, (unsigned long long)mr->succ_hist,
mr->att_hist); (unsigned long long)mr->att_hist);
} }
p += sprintf(p, "\nTotal packet count:: ideal %d " p += sprintf(p, "\nTotal packet count:: ideal %d "
"lookaround %d\n\n", "lookaround %d\n\n",
...@@ -106,7 +106,7 @@ minstrel_stats_open(struct inode *inode, struct file *file) ...@@ -106,7 +106,7 @@ minstrel_stats_open(struct inode *inode, struct file *file)
return 0; return 0;
} }
static int static ssize_t
minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *o) minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *o)
{ {
struct minstrel_stats_info *ms; struct minstrel_stats_info *ms;
......
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