summaryrefslogtreecommitdiff
path: root/drivers/net/ne2000.c
AgeCommit message (Collapse)Author
2021-05-25net: Remove ne2000 driverTom Rini
With the last user of this driver removed, remove the driver. Reviewed-by: Daniel Schwierzeck <[email protected]> Signed-off-by: Tom Rini <[email protected]>
2020-05-18common: Drop linux/delay.h from common headerSimon Glass
Move this uncommon header out of the common header. Signed-off-by: Simon Glass <[email protected]>
2013-08-19net: Use ARRAY_SIZE at appropriate placesAxel Lin
Use ARRAY_SIZE instead of having similar implementation in each drivers. The NUMELEMS defined in drivers/net/npe/include/IxOsalTypes.h is not used at all, so this patch removes it instead of converting it to use ARRAY_SIZE. Signed-off-by: Axel Lin <[email protected]> Cc: Albert Aribaud <[email protected]> Cc: Ben Warren <[email protected]> Cc: Jean-Christophe PLAGNIOL-VILLARD <[email protected]> Cc: Joe Hershberger <[email protected]> Cc: Marek Vasut <[email protected]> Cc: Mike Frysinger <[email protected]> Cc: Nobuhiro Iwamatsu <[email protected]> Cc: TsiChungLiew <[email protected]> Cc: Wolfgang Denk <[email protected]> Cc: York Sun <[email protected]>
2011-10-22consolidate mdelay by providing a common function for all usersAnatolij Gustschin
There are several mdelay() definitions in the driver and board code. Remove them all and provide a common mdelay() in lib/time.c. Signed-off-by: Anatolij Gustschin <[email protected]> Acked-by: Mike Frysinger <[email protected]>
2011-02-15net: ne2000: Add spport RTL-8019ASNobuhiro Iwamatsu
Add infomation of RTL-8016AS to hw_info. Signed-off-by: Nobuhiro Iwamatsu <[email protected]> CC: Ben Warren <[email protected]>
2008-10-13net: ne2000: Divided a function of NE2000 driverNobuhiro Iwamatsu
get_prom function was used __attriute__ , but it is not enable. ax88796.o does not do link besides ne2000.o. When ld is carried out, get_prom function of ax88796.c is ignored. This problem is a thing by specifications of ld. I checked and test this patch on SuperH and MIPS. Signed-off-by: Nobuhiro Iwamatsu <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2008-07-06net: ne2000: Move dev_addr variable from grobal to local.Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2008-07-06net: ne2000: Fix compile error of NE2000Nobuhiro Iwamatsu
If enable DEBUG, can not compile ne2000 driver. Signed-off-by: Nobuhiro Iwamatsu <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2008-04-28NE2000: Fix regresssion introduced by e710185aae90 on non AX88796Jean-Christophe PLAGNIOL-VILLARD
Move non-inlied functions into specific drivers file Set get_prom as weak Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]> Signed-off-by: Vlad Lungu <[email protected]> Signed-off-by: Ben Warren <[email protected]>
2008-04-25NE2000: coding style cleanupJean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
2008-03-26Coding Style cleanyp; update CHANGELOGWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-03-25net: Add support AX88796L ethernet devicegoda.yusuke
AX88796L is device of NE2000 compatible. This patch support AX88796L ethernet device. Signed-off-by: Yusuke Goda <[email protected]> Acked-by: Nobuhiro Iwamatsu <[email protected]>
2008-03-25ne2000 driver: change #ifdef to Makefile conditional compilationWolfgang Denk
Signed-off-by: Wolfgang Denk <[email protected]>
2008-03-25net: Divided code of NE2000 ethernet drivergoda.yusuke
There are more devices of the NE2000 base. A present code is difficult for us to support more devices. To support more NE2000 clone devices, separated the function. Signed-off-by: Yusuke Goda <[email protected]> Acked-by: Nobuhiro Iwamatsu <[email protected]>
2008-01-09fix various commentsMarcel Ziswiler
Signed-off-by: Marcel Ziswiler <[email protected]>
2007-11-25drivers/net : move net drivers to drivers/netJean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>