Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-10 | drivers/net/ethernet: Fix (nearly-)kernel-doc comments for various functions | Ben Hutchings | 1 | -2/+2 | |
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 <[email protected]> Acked-by: Jeff Kirsher <[email protected]> Signed-off-by: David S. Miller <[email protected]> | |||||
2012-02-17 | ethoc: set addr_assign_type if random_ether_addr() used | Danny Kukawka | 1 | -2/+18 | |
Set addr_assign_type correctly to NET_ADDR_RANDOM in case a random MAC address was generated and assigned to the netdevice. Fixed ethoc_set_mac_address() to check if the given mac address is valid and set also dev_addr of the net_device. Check also the return value of ethoc_set_mac_address() in ethoc_probe(). Reset the state to NET_ADDR_PERM as soon as the MAC get changed via .ndo_set_mac_address. v2: set net_device->dev_addr in ethoc_set_mac_address(), check if given address is valid Signed-off-by: Danny Kukawka <[email protected]> | |||||
2012-01-31 | drivers/net: Remove alloc_etherdev error messages | Joe Perches | 1 | -1/+0 | |
alloc_etherdev has a generic OOM/unable to alloc message. Remove the duplicative messages after alloc_etherdev calls. Signed-off-by: Joe Perches <[email protected]> Signed-off-by: David S. Miller <[email protected]> | |||||
2012-01-30 | drivers/net: fix up stale paths from driver reorg | Paul Gortmaker | 1 | -1/+1 | |
The reorganization of the driver layout in drivers/net left behind some stale paths in comments and in Kconfig help text. Bring them up to date. No actual change to any code takes place here. Signed-off-by: Paul Gortmaker <[email protected]> CC: Jeff Kirsher <[email protected]> Signed-off-by: David S. Miller <[email protected]> | |||||
2011-11-29 | net/ethernet: convert drivers/net/ethernet/* to use module_platform_driver() | Axel Lin | 1 | -12/+1 | |
This patch converts the drivers in drivers/net/ethernet/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: "David S. Miller" <[email protected]> Cc: Pantelis Antoniou <[email protected]> Cc: Vitaly Bordug <[email protected]> Cc: Wan ZongShun <[email protected]> Cc: Nicolas Pitre <[email protected]> Cc: Giuseppe Cavallaro <[email protected]> Cc: Marc Kleine-Budde <[email protected]> Cc: Jeff Kirsher <[email protected]> Cc: Jiri Pirko <[email protected]> Cc: Daniel Hellstrom <[email protected]> Cc: Alexey Dobriyan <[email protected]> Cc: Tobias Klauser <[email protected]> Cc: Grant Likely <[email protected]> Cc: Jiri Kosina <[email protected]> Cc: Richard Cochran <[email protected]> Cc: Jonas Bonn <[email protected]> Cc: Sebastian Poehn <[email protected]> Cc: Yoshihiro Shimoda <[email protected]> Cc: Ricardo Ribalda Delgado <[email protected]> Cc: "Michał Mirosław" <[email protected]> Signed-off-by: Axel Lin <[email protected]> Acked-by: Wan ZongShun <[email protected]> Signed-off-by: David S. Miller <[email protected]> | |||||
2011-10-31 | drivers/net: Add module.h to drivers who were implicitly using it | Paul Gortmaker | 1 | -0/+1 | |
The device.h header was including module.h, making it present for most of these drivers. But we want to clean that up. Call out the include of module.h in the modular network drivers. Signed-off-by: Paul Gortmaker <[email protected]> | |||||
2011-08-17 | net: remove use of ndo_set_multicast_list in drivers | Jiri Pirko | 1 | -1/+1 | |
replace it by ndo_set_rx_mode Signed-off-by: Jiri Pirko <[email protected]> Signed-off-by: David S. Miller <[email protected]> | |||||
2011-08-12 | ethoc: Move the Avionic driver | Jeff Kirsher | 1 | -0/+1203 | |
Move the Avionic driver into drivers/net/ethernet/ and make the necessary Kconfig and Makefile changes. CC: Thierry Reding <[email protected]> Signed-off-by: Jeff Kirsher <[email protected]> |