aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h
diff options
context:
space:
mode:
authorStanislaw Gruszka <sgruszka@redhat.com>2011-10-24 09:41:30 -0400
committerStanislaw Gruszka <sgruszka@redhat.com>2011-11-15 05:16:58 -0500
commite2ebc8337d116acdc25469ec8547ae665f50a4c1 (patch)
treecf4401fdbf6dabbd2731d90e3105c1ebbf60f87d /drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h
parentfee005e5dd82a43546c1b1beb187e82415360940 (diff)
iwlegacy: rename iwl to il
iwl_legacy prefix result in long function names, what cause that we have frequent line split and not readable code. Also iwl_foo symbols are duplicated in iwlwifi driver, what is annoying when editing kernel tree with cscope. Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Diffstat (limited to 'drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h')
-rw-r--r--drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h b/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h
index 8fef4b32b447..54334ac02788 100644
--- a/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h
+++ b/drivers/net/wireless/iwlegacy/iwl-3945-debugfs.h
@@ -31,27 +31,27 @@
31#include "iwl-debug.h" 31#include "iwl-debug.h"
32 32
33#ifdef CONFIG_IWLWIFI_LEGACY_DEBUGFS 33#ifdef CONFIG_IWLWIFI_LEGACY_DEBUGFS
34ssize_t iwl3945_ucode_rx_stats_read(struct file *file, char __user *user_buf, 34ssize_t il3945_ucode_rx_stats_read(struct file *file, char __user *user_buf,
35 size_t count, loff_t *ppos); 35 size_t count, loff_t *ppos);
36ssize_t iwl3945_ucode_tx_stats_read(struct file *file, char __user *user_buf, 36ssize_t il3945_ucode_tx_stats_read(struct file *file, char __user *user_buf,
37 size_t count, loff_t *ppos); 37 size_t count, loff_t *ppos);
38ssize_t iwl3945_ucode_general_stats_read(struct file *file, 38ssize_t il3945_ucode_general_stats_read(struct file *file,
39 char __user *user_buf, size_t count, 39 char __user *user_buf, size_t count,
40 loff_t *ppos); 40 loff_t *ppos);
41#else 41#else
42static ssize_t iwl3945_ucode_rx_stats_read(struct file *file, 42static ssize_t il3945_ucode_rx_stats_read(struct file *file,
43 char __user *user_buf, size_t count, 43 char __user *user_buf, size_t count,
44 loff_t *ppos) 44 loff_t *ppos)
45{ 45{
46 return 0; 46 return 0;
47} 47}
48static ssize_t iwl3945_ucode_tx_stats_read(struct file *file, 48static ssize_t il3945_ucode_tx_stats_read(struct file *file,
49 char __user *user_buf, size_t count, 49 char __user *user_buf, size_t count,
50 loff_t *ppos) 50 loff_t *ppos)
51{ 51{
52 return 0; 52 return 0;
53} 53}
54static ssize_t iwl3945_ucode_general_stats_read(struct file *file, 54static ssize_t il3945_ucode_general_stats_read(struct file *file,
55 char __user *user_buf, 55 char __user *user_buf,
56 size_t count, loff_t *ppos) 56 size_t count, loff_t *ppos)
57{ 57{