aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbevf
diff options
context:
space:
mode:
authorGreg Rose <gregory.v.rose@intel.com>2011-02-03 01:54:13 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-02-24 05:37:49 -0500
commit65d676c8c13c39301ebf813c7af00a13f05b2035 (patch)
treefa91d760c46bb94ea298dec35d5654331d29f3d1 /drivers/net/ixgbevf
parent69bfbec47d1c120f66f2f24d5f2cb13a72fc88df (diff)
ixgbevf: Fix name of function in function header comment
Some of the function names in function header comments did not match actual name of the function. Signed-off-by: Greg Rose <gregory.v.rose@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ixgbevf')
-rw-r--r--drivers/net/ixgbevf/ixgbevf_main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c
index 1f36f8fb41fc..43af761cdb16 100644
--- a/drivers/net/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ixgbevf/ixgbevf_main.c
@@ -107,7 +107,7 @@ static inline void ixgbevf_release_rx_desc(struct ixgbe_hw *hw,
107} 107}
108 108
109/* 109/*
110 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors 110 * ixgbevf_set_ivar - set IVAR registers - maps interrupt causes to vectors
111 * @adapter: pointer to adapter struct 111 * @adapter: pointer to adapter struct
112 * @direction: 0 for Rx, 1 for Tx, -1 for other causes 112 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
113 * @queue: queue to map the corresponding interrupt to 113 * @queue: queue to map the corresponding interrupt to
@@ -1017,7 +1017,7 @@ static irqreturn_t ixgbevf_msix_clean_tx(int irq, void *data)
1017} 1017}
1018 1018
1019/** 1019/**
1020 * ixgbe_msix_clean_rx - single unshared vector rx clean (all queues) 1020 * ixgbevf_msix_clean_rx - single unshared vector rx clean (all queues)
1021 * @irq: unused 1021 * @irq: unused
1022 * @data: pointer to our q_vector struct for this interrupt vector 1022 * @data: pointer to our q_vector struct for this interrupt vector
1023 **/ 1023 **/
@@ -1972,7 +1972,7 @@ static void ixgbevf_acquire_msix_vectors(struct ixgbevf_adapter *adapter,
1972} 1972}
1973 1973
1974/* 1974/*
1975 * ixgbe_set_num_queues: Allocate queues for device, feature dependant 1975 * ixgbevf_set_num_queues: Allocate queues for device, feature dependant
1976 * @adapter: board private structure to initialize 1976 * @adapter: board private structure to initialize
1977 * 1977 *
1978 * This is the top level queue allocation routine. The order here is very 1978 * This is the top level queue allocation routine. The order here is very
@@ -3534,9 +3534,9 @@ static struct pci_driver ixgbevf_driver = {
3534}; 3534};
3535 3535
3536/** 3536/**
3537 * ixgbe_init_module - Driver Registration Routine 3537 * ixgbevf_init_module - Driver Registration Routine
3538 * 3538 *
3539 * ixgbe_init_module is the first routine called when the driver is 3539 * ixgbevf_init_module is the first routine called when the driver is
3540 * loaded. All it does is register with the PCI subsystem. 3540 * loaded. All it does is register with the PCI subsystem.
3541 **/ 3541 **/
3542static int __init ixgbevf_init_module(void) 3542static int __init ixgbevf_init_module(void)
@@ -3554,9 +3554,9 @@ static int __init ixgbevf_init_module(void)
3554module_init(ixgbevf_init_module); 3554module_init(ixgbevf_init_module);
3555 3555
3556/** 3556/**
3557 * ixgbe_exit_module - Driver Exit Cleanup Routine 3557 * ixgbevf_exit_module - Driver Exit Cleanup Routine
3558 * 3558 *
3559 * ixgbe_exit_module is called just before the driver is removed 3559 * ixgbevf_exit_module is called just before the driver is removed
3560 * from memory. 3560 * from memory.
3561 **/ 3561 **/
3562static void __exit ixgbevf_exit_module(void) 3562static void __exit ixgbevf_exit_module(void)
@@ -3566,7 +3566,7 @@ static void __exit ixgbevf_exit_module(void)
3566 3566
3567#ifdef DEBUG 3567#ifdef DEBUG
3568/** 3568/**
3569 * ixgbe_get_hw_dev_name - return device name string 3569 * ixgbevf_get_hw_dev_name - return device name string
3570 * used by hardware layer to print debugging information 3570 * used by hardware layer to print debugging information
3571 **/ 3571 **/
3572char *ixgbevf_get_hw_dev_name(struct ixgbe_hw *hw) 3572char *ixgbevf_get_hw_dev_name(struct ixgbe_hw *hw)