diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2008-06-27 13:59:59 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-07-04 08:46:58 -0400 |
commit | 733596bea6ba7ea7949720b86794eda4e1b793d1 (patch) | |
tree | efec5e12ca2e1923ce04c468aee2fab1770179e6 /drivers/net/igb/e1000_nvm.c | |
parent | 3b644cf6cef0324c595b86181220901b5bed0b99 (diff) |
igb: cleanup function header comments
Function header comments do not match function name.
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/igb/e1000_nvm.c')
-rw-r--r-- | drivers/net/igb/e1000_nvm.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/net/igb/e1000_nvm.c b/drivers/net/igb/e1000_nvm.c index 2897106fee92..780ba798ce8f 100644 --- a/drivers/net/igb/e1000_nvm.c +++ b/drivers/net/igb/e1000_nvm.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include "e1000_nvm.h" | 32 | #include "e1000_nvm.h" |
33 | 33 | ||
34 | /** | 34 | /** |
35 | * e1000_raise_eec_clk - Raise EEPROM clock | 35 | * igb_raise_eec_clk - Raise EEPROM clock |
36 | * @hw: pointer to the HW structure | 36 | * @hw: pointer to the HW structure |
37 | * @eecd: pointer to the EEPROM | 37 | * @eecd: pointer to the EEPROM |
38 | * | 38 | * |
@@ -47,7 +47,7 @@ static void igb_raise_eec_clk(struct e1000_hw *hw, u32 *eecd) | |||
47 | } | 47 | } |
48 | 48 | ||
49 | /** | 49 | /** |
50 | * e1000_lower_eec_clk - Lower EEPROM clock | 50 | * igb_lower_eec_clk - Lower EEPROM clock |
51 | * @hw: pointer to the HW structure | 51 | * @hw: pointer to the HW structure |
52 | * @eecd: pointer to the EEPROM | 52 | * @eecd: pointer to the EEPROM |
53 | * | 53 | * |
@@ -62,7 +62,7 @@ static void igb_lower_eec_clk(struct e1000_hw *hw, u32 *eecd) | |||
62 | } | 62 | } |
63 | 63 | ||
64 | /** | 64 | /** |
65 | * e1000_shift_out_eec_bits - Shift data bits our to the EEPROM | 65 | * igb_shift_out_eec_bits - Shift data bits our to the EEPROM |
66 | * @hw: pointer to the HW structure | 66 | * @hw: pointer to the HW structure |
67 | * @data: data to send to the EEPROM | 67 | * @data: data to send to the EEPROM |
68 | * @count: number of bits to shift out | 68 | * @count: number of bits to shift out |
@@ -105,7 +105,7 @@ static void igb_shift_out_eec_bits(struct e1000_hw *hw, u16 data, u16 count) | |||
105 | } | 105 | } |
106 | 106 | ||
107 | /** | 107 | /** |
108 | * e1000_shift_in_eec_bits - Shift data bits in from the EEPROM | 108 | * igb_shift_in_eec_bits - Shift data bits in from the EEPROM |
109 | * @hw: pointer to the HW structure | 109 | * @hw: pointer to the HW structure |
110 | * @count: number of bits to shift in | 110 | * @count: number of bits to shift in |
111 | * | 111 | * |
@@ -143,7 +143,7 @@ static u16 igb_shift_in_eec_bits(struct e1000_hw *hw, u16 count) | |||
143 | } | 143 | } |
144 | 144 | ||
145 | /** | 145 | /** |
146 | * e1000_poll_eerd_eewr_done - Poll for EEPROM read/write completion | 146 | * igb_poll_eerd_eewr_done - Poll for EEPROM read/write completion |
147 | * @hw: pointer to the HW structure | 147 | * @hw: pointer to the HW structure |
148 | * @ee_reg: EEPROM flag for polling | 148 | * @ee_reg: EEPROM flag for polling |
149 | * | 149 | * |
@@ -174,7 +174,7 @@ static s32 igb_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg) | |||
174 | } | 174 | } |
175 | 175 | ||
176 | /** | 176 | /** |
177 | * e1000_acquire_nvm - Generic request for access to EEPROM | 177 | * igb_acquire_nvm - Generic request for access to EEPROM |
178 | * @hw: pointer to the HW structure | 178 | * @hw: pointer to the HW structure |
179 | * | 179 | * |
180 | * Set the EEPROM access request bit and wait for EEPROM access grant bit. | 180 | * Set the EEPROM access request bit and wait for EEPROM access grant bit. |
@@ -210,7 +210,7 @@ s32 igb_acquire_nvm(struct e1000_hw *hw) | |||
210 | } | 210 | } |
211 | 211 | ||
212 | /** | 212 | /** |
213 | * e1000_standby_nvm - Return EEPROM to standby state | 213 | * igb_standby_nvm - Return EEPROM to standby state |
214 | * @hw: pointer to the HW structure | 214 | * @hw: pointer to the HW structure |
215 | * | 215 | * |
216 | * Return the EEPROM to a standby state. | 216 | * Return the EEPROM to a standby state. |
@@ -273,7 +273,7 @@ static void e1000_stop_nvm(struct e1000_hw *hw) | |||
273 | } | 273 | } |
274 | 274 | ||
275 | /** | 275 | /** |
276 | * e1000_release_nvm - Release exclusive access to EEPROM | 276 | * igb_release_nvm - Release exclusive access to EEPROM |
277 | * @hw: pointer to the HW structure | 277 | * @hw: pointer to the HW structure |
278 | * | 278 | * |
279 | * Stop any current commands to the EEPROM and clear the EEPROM request bit. | 279 | * Stop any current commands to the EEPROM and clear the EEPROM request bit. |
@@ -290,7 +290,7 @@ void igb_release_nvm(struct e1000_hw *hw) | |||
290 | } | 290 | } |
291 | 291 | ||
292 | /** | 292 | /** |
293 | * e1000_ready_nvm_eeprom - Prepares EEPROM for read/write | 293 | * igb_ready_nvm_eeprom - Prepares EEPROM for read/write |
294 | * @hw: pointer to the HW structure | 294 | * @hw: pointer to the HW structure |
295 | * | 295 | * |
296 | * Setups the EEPROM for reading and writing. | 296 | * Setups the EEPROM for reading and writing. |
@@ -348,7 +348,7 @@ out: | |||
348 | } | 348 | } |
349 | 349 | ||
350 | /** | 350 | /** |
351 | * e1000_read_nvm_eerd - Reads EEPROM using EERD register | 351 | * igb_read_nvm_eerd - Reads EEPROM using EERD register |
352 | * @hw: pointer to the HW structure | 352 | * @hw: pointer to the HW structure |
353 | * @offset: offset of word in the EEPROM to read | 353 | * @offset: offset of word in the EEPROM to read |
354 | * @words: number of words to read | 354 | * @words: number of words to read |
@@ -391,7 +391,7 @@ out: | |||
391 | } | 391 | } |
392 | 392 | ||
393 | /** | 393 | /** |
394 | * e1000_write_nvm_spi - Write to EEPROM using SPI | 394 | * igb_write_nvm_spi - Write to EEPROM using SPI |
395 | * @hw: pointer to the HW structure | 395 | * @hw: pointer to the HW structure |
396 | * @offset: offset within the EEPROM to be written to | 396 | * @offset: offset within the EEPROM to be written to |
397 | * @words: number of words to write | 397 | * @words: number of words to write |
@@ -475,7 +475,7 @@ out: | |||
475 | } | 475 | } |
476 | 476 | ||
477 | /** | 477 | /** |
478 | * e1000_read_part_num - Read device part number | 478 | * igb_read_part_num - Read device part number |
479 | * @hw: pointer to the HW structure | 479 | * @hw: pointer to the HW structure |
480 | * @part_num: pointer to device part number | 480 | * @part_num: pointer to device part number |
481 | * | 481 | * |
@@ -506,7 +506,7 @@ out: | |||
506 | } | 506 | } |
507 | 507 | ||
508 | /** | 508 | /** |
509 | * e1000_read_mac_addr - Read device MAC address | 509 | * igb_read_mac_addr - Read device MAC address |
510 | * @hw: pointer to the HW structure | 510 | * @hw: pointer to the HW structure |
511 | * | 511 | * |
512 | * Reads the device MAC address from the EEPROM and stores the value. | 512 | * Reads the device MAC address from the EEPROM and stores the value. |
@@ -541,7 +541,7 @@ out: | |||
541 | } | 541 | } |
542 | 542 | ||
543 | /** | 543 | /** |
544 | * e1000_validate_nvm_checksum - Validate EEPROM checksum | 544 | * igb_validate_nvm_checksum - Validate EEPROM checksum |
545 | * @hw: pointer to the HW structure | 545 | * @hw: pointer to the HW structure |
546 | * | 546 | * |
547 | * Calculates the EEPROM checksum by reading/adding each word of the EEPROM | 547 | * Calculates the EEPROM checksum by reading/adding each word of the EEPROM |
@@ -573,7 +573,7 @@ out: | |||
573 | } | 573 | } |
574 | 574 | ||
575 | /** | 575 | /** |
576 | * e1000_update_nvm_checksum - Update EEPROM checksum | 576 | * igb_update_nvm_checksum - Update EEPROM checksum |
577 | * @hw: pointer to the HW structure | 577 | * @hw: pointer to the HW structure |
578 | * | 578 | * |
579 | * Updates the EEPROM checksum by reading/adding each word of the EEPROM | 579 | * Updates the EEPROM checksum by reading/adding each word of the EEPROM |