From: Pantelis Antoniou <panto@intracom.gr>
To: Dan Malek <dan@embeddededge.com>,
Kumar Gala <kumar.gala@freescale.com>,
Eugene Surovegin <ebs@ebshome.net>,
Vitaly Bordug <vbordug@ru.mvista.com>,
Tom Rini <trini@kernel.crashing.org>,
Marcelo Tosatti <marcelo.tosatti@cyclades.com>,
Jason McMullan <jason.mcmullan@timesys.com>,
linuxppc-embedded <linuxppc-embedded@ozlabs.org>
Subject: [PATCH 01/04] Freescale Ethernet combined driver
Date: Mon, 09 May 2005 14:44:56 +0300 [thread overview]
Message-ID: <427F4D38.70102@intracom.gr> (raw)
[-- Attachment #1: Type: text/plain, Size: 275 bytes --]
Hi
The following patch is a combined FCC/FEC ethernet driver
for the Freescale line of PowerQUICCs.
FECs on 8xx and FCCs on 82xx are supported.
This part of the patch contains makefiles and friends.
Regards
Pantelis
Signed-off-by: Pantelis Antoniou <panto@intracom.gr>
[-- Attachment #2: fs_enet-01.patch --]
[-- Type: text/x-patch, Size: 1319 bytes --]
--- linux-2.6.11.7-fs_enet.orig/drivers/net/Kconfig
+++ linux-2.6.11.7-fs_enet/drivers/net/Kconfig
@@ -1810,6 +1810,7 @@ config NE_H8300
controller on the Renesas H8/300 processor.
source "drivers/net/fec_8xx/Kconfig"
+source "drivers/net/fs_enet/Kconfig"
endmenu
--- linux-2.6.11.7-fs_enet.orig/drivers/net/Makefile
+++ linux-2.6.11.7-fs_enet/drivers/net/Makefile
@@ -182,6 +182,7 @@ obj-$(CONFIG_IBMVETH) += ibmveth.o
obj-$(CONFIG_S2IO) += s2io.o
obj-$(CONFIG_SMC91X) += smc91x.o
obj-$(CONFIG_FEC_8XX) += fec_8xx/
+obj-$(CONFIG_FS_ENET) += fs_enet/
obj-$(CONFIG_ARM) += arm/
obj-$(CONFIG_NET_FC) += fc/
@@ -197,3 +198,6 @@ obj-$(CONFIG_IRDA) += irda/
obj-$(CONFIG_ETRAX_ETHERNET) += cris/
obj-$(CONFIG_NETCONSOLE) += netconsole.o
+
+obj-$(CONFIG_FS_ENET) += fs_enet/ mii.o
+
--- /dev/null
+++ linux-2.6.11.7-fs_enet/drivers/net/fs_enet/Kconfig
@@ -0,0 +1,4 @@
+config FS_ENET
+ tristate "Freescale Ethernet Driver"
+ depends on NET_ETHERNET && (8xx || 8260)
+ select MII
--- /dev/null
+++ linux-2.6.11.7-fs_enet/drivers/net/fs_enet/Makefile
@@ -0,0 +1,10 @@
+#
+# Makefile for the Freescale Ethernet controllers
+#
+
+obj-$(CONFIG_FS_ENET) += fs_enet.o
+
+obj-$(CONFIG_8xx) += mac-fec.o
+obj-$(CONFIG_8260) += mac-fcc.o
+
+fs_enet-objs := fs_enet-main.o fs_enet-mii.o mii-bitbang.o mii-fixed.o
next reply other threads:[~2005-05-09 12:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-09 11:44 Pantelis Antoniou [this message]
2005-05-09 17:26 ` [PATCH 01/04] Freescale Ethernet combined driver Kumar Gala
2005-05-10 10:52 ` Pantelis Antoniou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=427F4D38.70102@intracom.gr \
--to=panto@intracom.gr \
--cc=dan@embeddededge.com \
--cc=ebs@ebshome.net \
--cc=jason.mcmullan@timesys.com \
--cc=kumar.gala@freescale.com \
--cc=linuxppc-embedded@ozlabs.org \
--cc=marcelo.tosatti@cyclades.com \
--cc=trini@kernel.crashing.org \
--cc=vbordug@ru.mvista.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.