diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2012-07-10 06:56:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-11 02:13:46 -0400 |
commit | 49ce9c2cda18f62b13055dc715e7b514157c2da8 (patch) | |
tree | 432dea5cfd5c5f4b95a71a1e958e13b5cc538a1f /drivers/net/ethernet/neterion | |
parent | ae86b9e3846f6fc5509dee721f2bdba1db8ab96a (diff) |
drivers/net/ethernet: Fix (nearly-)kernel-doc comments for various functions
Fix incorrect start markers, wrapped summary lines, missing section
breaks, incorrect separators, and some name mismatches. Delete
a few that are content-free.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/neterion')
-rw-r--r-- | drivers/net/ethernet/neterion/s2io.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/ethernet/neterion/s2io.c b/drivers/net/ethernet/neterion/s2io.c index e7cd587d8ae7..d958c2299372 100644 --- a/drivers/net/ethernet/neterion/s2io.c +++ b/drivers/net/ethernet/neterion/s2io.c | |||
@@ -3377,7 +3377,7 @@ static int wait_for_cmd_complete(void __iomem *addr, u64 busy_bit, | |||
3377 | } while (cnt < 20); | 3377 | } while (cnt < 20); |
3378 | return ret; | 3378 | return ret; |
3379 | } | 3379 | } |
3380 | /* | 3380 | /** |
3381 | * check_pci_device_id - Checks if the device id is supported | 3381 | * check_pci_device_id - Checks if the device id is supported |
3382 | * @id : device id | 3382 | * @id : device id |
3383 | * Description: Function to check if the pci device id is supported by driver. | 3383 | * Description: Function to check if the pci device id is supported by driver. |
@@ -5238,7 +5238,7 @@ static u64 do_s2io_read_unicast_mc(struct s2io_nic *sp, int offset) | |||
5238 | } | 5238 | } |
5239 | 5239 | ||
5240 | /** | 5240 | /** |
5241 | * s2io_set_mac_addr driver entry point | 5241 | * s2io_set_mac_addr - driver entry point |
5242 | */ | 5242 | */ |
5243 | 5243 | ||
5244 | static int s2io_set_mac_addr(struct net_device *dev, void *p) | 5244 | static int s2io_set_mac_addr(struct net_device *dev, void *p) |
@@ -6088,7 +6088,7 @@ static int s2io_bist_test(struct s2io_nic *sp, uint64_t *data) | |||
6088 | } | 6088 | } |
6089 | 6089 | ||
6090 | /** | 6090 | /** |
6091 | * s2io-link_test - verifies the link state of the nic | 6091 | * s2io_link_test - verifies the link state of the nic |
6092 | * @sp ; private member of the device structure, which is a pointer to the | 6092 | * @sp ; private member of the device structure, which is a pointer to the |
6093 | * s2io_nic structure. | 6093 | * s2io_nic structure. |
6094 | * @data: variable that returns the result of each of the test conducted by | 6094 | * @data: variable that returns the result of each of the test conducted by |
@@ -6116,9 +6116,9 @@ static int s2io_link_test(struct s2io_nic *sp, uint64_t *data) | |||
6116 | 6116 | ||
6117 | /** | 6117 | /** |
6118 | * s2io_rldram_test - offline test for access to the RldRam chip on the NIC | 6118 | * s2io_rldram_test - offline test for access to the RldRam chip on the NIC |
6119 | * @sp - private member of the device structure, which is a pointer to the | 6119 | * @sp: private member of the device structure, which is a pointer to the |
6120 | * s2io_nic structure. | 6120 | * s2io_nic structure. |
6121 | * @data - variable that returns the result of each of the test | 6121 | * @data: variable that returns the result of each of the test |
6122 | * conducted by the driver. | 6122 | * conducted by the driver. |
6123 | * Description: | 6123 | * Description: |
6124 | * This is one of the offline test that tests the read and write | 6124 | * This is one of the offline test that tests the read and write |