diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-11-05 12:07:31 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:03:45 -0500 |
commit | 993fb90c5b1727342362c43ed4e29c26682f54f7 (patch) | |
tree | c151fa32d24fd1725d425561874b12e9b701421e /drivers/net/netxen/netxen_nic_hw.c | |
parent | 3957d63da0067ad6a7dc8261b7eeb824f9dc42b4 (diff) |
drivers/net/netxen/: cleanups
This patch contains the following cleanups:
- static functions in .c files shouldn't be marked inline
- make needlessly global code static
- #if 0 unused code
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/netxen/netxen_nic_hw.c')
-rw-r--r-- | drivers/net/netxen/netxen_nic_hw.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/drivers/net/netxen/netxen_nic_hw.c b/drivers/net/netxen/netxen_nic_hw.c index 2c19b8df98fa..b2c78612beed 100644 --- a/drivers/net/netxen/netxen_nic_hw.c +++ b/drivers/net/netxen/netxen_nic_hw.c | |||
@@ -33,7 +33,6 @@ | |||
33 | 33 | ||
34 | #include "netxen_nic.h" | 34 | #include "netxen_nic.h" |
35 | #include "netxen_nic_hw.h" | 35 | #include "netxen_nic_hw.h" |
36 | #define DEFINE_GLOBAL_RECV_CRB | ||
37 | #include "netxen_nic_phan_reg.h" | 36 | #include "netxen_nic_phan_reg.h" |
38 | 37 | ||
39 | 38 | ||
@@ -244,12 +243,15 @@ struct netxen_recv_crb recv_crb_registers[] = { | |||
244 | }, | 243 | }, |
245 | }; | 244 | }; |
246 | 245 | ||
247 | u64 ctx_addr_sig_regs[][3] = { | 246 | static u64 ctx_addr_sig_regs[][3] = { |
248 | {NETXEN_NIC_REG(0x188), NETXEN_NIC_REG(0x18c), NETXEN_NIC_REG(0x1c0)}, | 247 | {NETXEN_NIC_REG(0x188), NETXEN_NIC_REG(0x18c), NETXEN_NIC_REG(0x1c0)}, |
249 | {NETXEN_NIC_REG(0x190), NETXEN_NIC_REG(0x194), NETXEN_NIC_REG(0x1c4)}, | 248 | {NETXEN_NIC_REG(0x190), NETXEN_NIC_REG(0x194), NETXEN_NIC_REG(0x1c4)}, |
250 | {NETXEN_NIC_REG(0x198), NETXEN_NIC_REG(0x19c), NETXEN_NIC_REG(0x1c8)}, | 249 | {NETXEN_NIC_REG(0x198), NETXEN_NIC_REG(0x19c), NETXEN_NIC_REG(0x1c8)}, |
251 | {NETXEN_NIC_REG(0x1a0), NETXEN_NIC_REG(0x1a4), NETXEN_NIC_REG(0x1cc)} | 250 | {NETXEN_NIC_REG(0x1a0), NETXEN_NIC_REG(0x1a4), NETXEN_NIC_REG(0x1cc)} |
252 | }; | 251 | }; |
252 | #define CRB_CTX_ADDR_REG_LO(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][0]) | ||
253 | #define CRB_CTX_ADDR_REG_HI(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][2]) | ||
254 | #define CRB_CTX_SIGNATURE_REG(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][1]) | ||
253 | 255 | ||
254 | 256 | ||
255 | /* PCI Windowing for DDR regions. */ | 257 | /* PCI Windowing for DDR regions. */ |
@@ -279,8 +281,8 @@ u64 ctx_addr_sig_regs[][3] = { | |||
279 | 281 | ||
280 | #define NETXEN_NIC_WINDOW_MARGIN 0x100000 | 282 | #define NETXEN_NIC_WINDOW_MARGIN 0x100000 |
281 | 283 | ||
282 | unsigned long netxen_nic_pci_set_window(struct netxen_adapter *adapter, | 284 | static unsigned long netxen_nic_pci_set_window(struct netxen_adapter *adapter, |
283 | unsigned long long addr); | 285 | unsigned long long addr); |
284 | void netxen_free_hw_resources(struct netxen_adapter *adapter); | 286 | void netxen_free_hw_resources(struct netxen_adapter *adapter); |
285 | 287 | ||
286 | int netxen_nic_set_mac(struct net_device *netdev, void *p) | 288 | int netxen_nic_set_mac(struct net_device *netdev, void *p) |
@@ -886,11 +888,10 @@ void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 * value) | |||
886 | netxen_nic_pci_change_crbwindow(adapter, 1); | 888 | netxen_nic_pci_change_crbwindow(adapter, 1); |
887 | } | 889 | } |
888 | 890 | ||
889 | int netxen_pci_set_window_warning_count = 0; | 891 | static int netxen_pci_set_window_warning_count = 0; |
890 | 892 | ||
891 | unsigned long | 893 | static unsigned long netxen_nic_pci_set_window(struct netxen_adapter *adapter, |
892 | netxen_nic_pci_set_window(struct netxen_adapter *adapter, | 894 | unsigned long long addr) |
893 | unsigned long long addr) | ||
894 | { | 895 | { |
895 | static int ddr_mn_window = -1; | 896 | static int ddr_mn_window = -1; |
896 | static int qdr_sn_window = -1; | 897 | static int qdr_sn_window = -1; |
@@ -952,6 +953,7 @@ netxen_nic_pci_set_window(struct netxen_adapter *adapter, | |||
952 | return addr; | 953 | return addr; |
953 | } | 954 | } |
954 | 955 | ||
956 | #if 0 | ||
955 | int | 957 | int |
956 | netxen_nic_erase_pxe(struct netxen_adapter *adapter) | 958 | netxen_nic_erase_pxe(struct netxen_adapter *adapter) |
957 | { | 959 | { |
@@ -962,6 +964,7 @@ netxen_nic_erase_pxe(struct netxen_adapter *adapter) | |||
962 | } | 964 | } |
963 | return 0; | 965 | return 0; |
964 | } | 966 | } |
967 | #endif /* 0 */ | ||
965 | 968 | ||
966 | int netxen_nic_get_board_info(struct netxen_adapter *adapter) | 969 | int netxen_nic_get_board_info(struct netxen_adapter *adapter) |
967 | { | 970 | { |