diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-08-18 16:07:57 -0400 |
---|---|---|
committer | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-15 05:21:47 -0500 |
commit | 9406f79775a5374b932ac45ae9e84a71032a9d33 (patch) | |
tree | f832668c069682fb7d55c0b514aff97fe0e03b11 /drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c | |
parent | 58de00a464f1e7cf0b108341dc6cc49276d19d7a (diff) |
iwlegacy: remove il argument from IWL_ERR/INFO/WARN/CRIT
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Diffstat (limited to 'drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c b/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c index 8ea0ac205f7f..ebb71a685101 100644 --- a/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c +++ b/drivers/net/wireless/iwlegacy/iwl-4965-debugfs.c | |||
@@ -75,7 +75,7 @@ ssize_t il4965_ucode_rx_stats_read(struct file *file, char __user *user_buf, | |||
75 | 75 | ||
76 | buf = kzalloc(bufsz, GFP_KERNEL); | 76 | buf = kzalloc(bufsz, GFP_KERNEL); |
77 | if (!buf) { | 77 | if (!buf) { |
78 | IL_ERR(il, "Can not allocate Buffer\n"); | 78 | IL_ERR("Can not allocate Buffer\n"); |
79 | return -ENOMEM; | 79 | return -ENOMEM; |
80 | } | 80 | } |
81 | 81 | ||
@@ -501,7 +501,7 @@ ssize_t il4965_ucode_tx_stats_read(struct file *file, | |||
501 | 501 | ||
502 | buf = kzalloc(bufsz, GFP_KERNEL); | 502 | buf = kzalloc(bufsz, GFP_KERNEL); |
503 | if (!buf) { | 503 | if (!buf) { |
504 | IL_ERR(il, "Can not allocate Buffer\n"); | 504 | IL_ERR("Can not allocate Buffer\n"); |
505 | return -ENOMEM; | 505 | return -ENOMEM; |
506 | } | 506 | } |
507 | 507 | ||
@@ -679,7 +679,7 @@ il4965_ucode_general_stats_read(struct file *file, char __user *user_buf, | |||
679 | 679 | ||
680 | buf = kzalloc(bufsz, GFP_KERNEL); | 680 | buf = kzalloc(bufsz, GFP_KERNEL); |
681 | if (!buf) { | 681 | if (!buf) { |
682 | IL_ERR(il, "Can not allocate Buffer\n"); | 682 | IL_ERR("Can not allocate Buffer\n"); |
683 | return -ENOMEM; | 683 | return -ENOMEM; |
684 | } | 684 | } |
685 | 685 | ||