diff options
| -rw-r--r-- | net/mac80211/rc80211_minstrel_debugfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/rc80211_minstrel_debugfs.c b/net/mac80211/rc80211_minstrel_debugfs.c index 0b024cd6b809..98f480708050 100644 --- a/net/mac80211/rc80211_minstrel_debugfs.c +++ b/net/mac80211/rc80211_minstrel_debugfs.c | |||
| @@ -94,8 +94,8 @@ minstrel_stats_open(struct inode *inode, struct file *file) | |||
| 94 | prob / 10, prob % 10, | 94 | prob / 10, prob % 10, |
| 95 | mr->last_success, | 95 | mr->last_success, |
| 96 | mr->last_attempts, | 96 | mr->last_attempts, |
| 97 | mr->succ_hist, | 97 | (unsigned long long)mr->succ_hist, |
| 98 | mr->att_hist); | 98 | (unsigned long long)mr->att_hist); |
| 99 | } | 99 | } |
| 100 | p += sprintf(p, "\nTotal packet count:: ideal %d " | 100 | p += sprintf(p, "\nTotal packet count:: ideal %d " |
| 101 | "lookaround %d\n\n", | 101 | "lookaround %d\n\n", |
| @@ -106,7 +106,7 @@ minstrel_stats_open(struct inode *inode, struct file *file) | |||
| 106 | return 0; | 106 | return 0; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | static int | 109 | static ssize_t |
| 110 | minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *o) | 110 | minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *o) |
| 111 | { | 111 | { |
| 112 | struct minstrel_stats_info *ms; | 112 | struct minstrel_stats_info *ms; |
