diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-08-30 09:39:42 -0400 |
---|---|---|
committer | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-15 07:12:24 -0500 |
commit | d0c72347bece3299a90351151c69c0f721f964ff (patch) | |
tree | 12675e46502f8cadf5f30d0717d3656988495037 /drivers/net/wireless/iwlegacy/iwl-debugfs.c | |
parent | 4d69c7521a90cba945b4720672b4511b1e541189 (diff) |
iwlegacy: s/rx_handler/handler/
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Diffstat (limited to 'drivers/net/wireless/iwlegacy/iwl-debugfs.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl-debugfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl-debugfs.c b/drivers/net/wireless/iwlegacy/iwl-debugfs.c index 4076b79e593e..3f6b06e99d2f 100644 --- a/drivers/net/wireless/iwlegacy/iwl-debugfs.c +++ b/drivers/net/wireless/iwlegacy/iwl-debugfs.c | |||
@@ -555,11 +555,11 @@ static ssize_t il_dbgfs_interrupt_read(struct file *file, | |||
555 | "Rx command responses:\t\t %u\n", | 555 | "Rx command responses:\t\t %u\n", |
556 | il->isr_stats.rx); | 556 | il->isr_stats.rx); |
557 | for (cnt = 0; cnt < IL_CN_MAX; cnt++) { | 557 | for (cnt = 0; cnt < IL_CN_MAX; cnt++) { |
558 | if (il->isr_stats.rx_handlers[cnt] > 0) | 558 | if (il->isr_stats.handlers[cnt] > 0) |
559 | pos += scnprintf(buf + pos, bufsz - pos, | 559 | pos += scnprintf(buf + pos, bufsz - pos, |
560 | "\tRx handler[%36s]:\t\t %u\n", | 560 | "\tRx handler[%36s]:\t\t %u\n", |
561 | il_get_cmd_string(cnt), | 561 | il_get_cmd_string(cnt), |
562 | il->isr_stats.rx_handlers[cnt]); | 562 | il->isr_stats.handlers[cnt]); |
563 | } | 563 | } |
564 | 564 | ||
565 | pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n", | 565 | pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n", |