aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe.h
diff options
context:
space:
mode:
authorDon Skidmore <donald.c.skidmore@intel.com>2009-08-25 00:47:32 -0400
committerDavid S. Miller <davem@davemloft.net>2009-08-26 18:36:46 -0400
commit7b25cdbafd757b1255725d4ffb5b1081714b4256 (patch)
treee2432ce1cb106e3a9c80722530b4a4f883cdd0ef /drivers/net/ixgbe/ixgbe.h
parent46a72b35144769d1e9c23c3a9a26c1776ef7d8f6 (diff)
ixgbe: cleanup functions that should have been defined static
We have some ~40 functions that were being called out with 'make namespacecheck'. This patch changes these functions to be static. Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe.h')
-rw-r--r--drivers/net/ixgbe/ixgbe.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/drivers/net/ixgbe/ixgbe.h b/drivers/net/ixgbe/ixgbe.h
index 8f1f8bab0fd9..c983c89630af 100644
--- a/drivers/net/ixgbe/ixgbe.h
+++ b/drivers/net/ixgbe/ixgbe.h
@@ -424,55 +424,20 @@ extern s32 ixgbe_init_fdir_perfect_82599(struct ixgbe_hw *hw, u32 pballoc);
424extern s32 ixgbe_fdir_add_signature_filter_82599(struct ixgbe_hw *hw, 424extern s32 ixgbe_fdir_add_signature_filter_82599(struct ixgbe_hw *hw,
425 struct ixgbe_atr_input *input, 425 struct ixgbe_atr_input *input,
426 u8 queue); 426 u8 queue);
427extern s32 ixgbe_fdir_add_perfect_filter_82599(struct ixgbe_hw *hw,
428 struct ixgbe_atr_input *input,
429 u16 soft_id,
430 u8 queue);
431extern u16 ixgbe_atr_compute_hash_82599(struct ixgbe_atr_input *input, u32 key);
432extern s32 ixgbe_atr_set_vlan_id_82599(struct ixgbe_atr_input *input, 427extern s32 ixgbe_atr_set_vlan_id_82599(struct ixgbe_atr_input *input,
433 u16 vlan_id); 428 u16 vlan_id);
434extern s32 ixgbe_atr_set_src_ipv4_82599(struct ixgbe_atr_input *input, 429extern s32 ixgbe_atr_set_src_ipv4_82599(struct ixgbe_atr_input *input,
435 u32 src_addr); 430 u32 src_addr);
436extern s32 ixgbe_atr_set_dst_ipv4_82599(struct ixgbe_atr_input *input, 431extern s32 ixgbe_atr_set_dst_ipv4_82599(struct ixgbe_atr_input *input,
437 u32 dst_addr); 432 u32 dst_addr);
438extern s32 ixgbe_atr_set_src_ipv6_82599(struct ixgbe_atr_input *input,
439 u32 src_addr_1, u32 src_addr_2,
440 u32 src_addr_3, u32 src_addr_4);
441extern s32 ixgbe_atr_set_dst_ipv6_82599(struct ixgbe_atr_input *input,
442 u32 dst_addr_1, u32 dst_addr_2,
443 u32 dst_addr_3, u32 dst_addr_4);
444extern s32 ixgbe_atr_set_src_port_82599(struct ixgbe_atr_input *input, 433extern s32 ixgbe_atr_set_src_port_82599(struct ixgbe_atr_input *input,
445 u16 src_port); 434 u16 src_port);
446extern s32 ixgbe_atr_set_dst_port_82599(struct ixgbe_atr_input *input, 435extern s32 ixgbe_atr_set_dst_port_82599(struct ixgbe_atr_input *input,
447 u16 dst_port); 436 u16 dst_port);
448extern s32 ixgbe_atr_set_flex_byte_82599(struct ixgbe_atr_input *input, 437extern s32 ixgbe_atr_set_flex_byte_82599(struct ixgbe_atr_input *input,
449 u16 flex_byte); 438 u16 flex_byte);
450extern s32 ixgbe_atr_set_vm_pool_82599(struct ixgbe_atr_input *input,
451 u8 vm_pool);
452extern s32 ixgbe_atr_set_l4type_82599(struct ixgbe_atr_input *input, 439extern s32 ixgbe_atr_set_l4type_82599(struct ixgbe_atr_input *input,
453 u8 l4type); 440 u8 l4type);
454extern s32 ixgbe_atr_get_vlan_id_82599(struct ixgbe_atr_input *input,
455 u16 *vlan_id);
456extern s32 ixgbe_atr_get_src_ipv4_82599(struct ixgbe_atr_input *input,
457 u32 *src_addr);
458extern s32 ixgbe_atr_get_dst_ipv4_82599(struct ixgbe_atr_input *input,
459 u32 *dst_addr);
460extern s32 ixgbe_atr_get_src_ipv6_82599(struct ixgbe_atr_input *input,
461 u32 *src_addr_1, u32 *src_addr_2,
462 u32 *src_addr_3, u32 *src_addr_4);
463extern s32 ixgbe_atr_get_dst_ipv6_82599(struct ixgbe_atr_input *input,
464 u32 *dst_addr_1, u32 *dst_addr_2,
465 u32 *dst_addr_3, u32 *dst_addr_4);
466extern s32 ixgbe_atr_get_src_port_82599(struct ixgbe_atr_input *input,
467 u16 *src_port);
468extern s32 ixgbe_atr_get_dst_port_82599(struct ixgbe_atr_input *input,
469 u16 *dst_port);
470extern s32 ixgbe_atr_get_flex_byte_82599(struct ixgbe_atr_input *input,
471 u16 *flex_byte);
472extern s32 ixgbe_atr_get_vm_pool_82599(struct ixgbe_atr_input *input,
473 u8 *vm_pool);
474extern s32 ixgbe_atr_get_l4type_82599(struct ixgbe_atr_input *input,
475 u8 *l4type);
476#ifdef IXGBE_FCOE 441#ifdef IXGBE_FCOE
477extern void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter); 442extern void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter);
478extern int ixgbe_fso(struct ixgbe_adapter *adapter, 443extern int ixgbe_fso(struct ixgbe_adapter *adapter,