Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a0c72c9 authored by Dustin McIntire's avatar Dustin McIntire Committed by Jeff Garzik
Browse files

[PATCH] RE: [PATCH 1/1] net driver: Add support for SMSC LAN911x line of ethernet chips



>
> The patch was badly wordwrapped.  Please fix and resend.
>

OK, I've fixed the wrapping and removed the CONFIG_ARM restriction.  I've also did my
best to modify the C style to conform to the comments.

I noticed that the patch is getting ignored by majordomo due to its size >100K.
Should it be broken up somehow to allow posting to the lists?

Signed-off-by: default avatarDustin McIntire <dustin@sensoria.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 89be0501
Loading
Loading
Loading
Loading
+16 −0
Original line number Original line Diff line number Diff line
@@ -865,6 +865,22 @@ config DM9000
	  <file:Documentation/networking/net-modules.txt>.  The module will be
	  <file:Documentation/networking/net-modules.txt>.  The module will be
	  called dm9000.
	  called dm9000.


config SMC911X
	tristate "SMSC LAN911[5678] support"
	select CRC32
	select MII
	depends on NET_ETHERNET
	help
	  This is a driver for SMSC's LAN911x series of Ethernet chipsets
	  including the new LAN9115, LAN9116, LAN9117, and LAN9118.
	  Say Y if you want it compiled into the kernel, 
	  and read the Ethernet-HOWTO, available from
	  <http://www.linuxdoc.org/docs.html#howto>.

	  This driver is also available as a module. The module will be 
	  called smc911x.  If you want to compile it as a module, say M 
	  here and read <file:Documentation/modules.txt>

config NET_VENDOR_RACAL
config NET_VENDOR_RACAL
	bool "Racal-Interlan (Micom) NI cards"
	bool "Racal-Interlan (Micom) NI cards"
	depends on NET_ETHERNET && ISA
	depends on NET_ETHERNET && ISA
+1 −0
Original line number Original line Diff line number Diff line
@@ -193,6 +193,7 @@ obj-$(CONFIG_AMD8111_ETH) += amd8111e.o
obj-$(CONFIG_IBMVETH) += ibmveth.o
obj-$(CONFIG_IBMVETH) += ibmveth.o
obj-$(CONFIG_S2IO) += s2io.o
obj-$(CONFIG_S2IO) += s2io.o
obj-$(CONFIG_SMC91X) += smc91x.o
obj-$(CONFIG_SMC91X) += smc91x.o
obj-$(CONFIG_SMC911X) += smc911x.o
obj-$(CONFIG_DM9000) += dm9000.o
obj-$(CONFIG_DM9000) += dm9000.o
obj-$(CONFIG_FEC_8XX) += fec_8xx/
obj-$(CONFIG_FEC_8XX) += fec_8xx/


drivers/net/smc911x.c

0 → 100644
+2307 −0

File added.

Preview size limit exceeded, changes collapsed.

drivers/net/smc911x.h

0 → 100644
+835 −0

File added.

Preview size limit exceeded, changes collapsed.