From: Ben Warren <biggerbadderben@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request - net
Date: Sun, 09 Nov 2008 21:51:06 -0800 [thread overview]
Message-ID: <4917CBCA.7010203@gmail.com> (raw)
Wolfgang,
The following changes since commit 1378174a1351c0285736863a665ab758fe8d5f71:
Wolfgang Denk (1):
Merge branch 'master' of /home/wd/git/u-boot/custodians
are available in the git repository at:
git://git.denx.de/u-boot-net.git master
Ben Warren (9):
Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
Fix typo in cpu/mpc85xx/cpu.c
Moved initialization of FCC Ethernet controller to cpu_eth_init
Moved initialization of QE Ethernet controller to cpu_eth_init()
Moved initialization of MPC8220 FEC to cpu_eth_init()
Moved initialization of MPC8XX SCC to cpu_eth_init()
Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
Moved PPC4xx EMAC driver to drivers/net
Moved initialization of PPC4xx EMAC to cpu_eth_init()
Clive Stubbings (1):
xilinx_emaclite buffer overrun
Richard Retanubun (1):
drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
Shinya Kuribayashi (1):
net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
TsiChung Liew (1):
ColdFire: Add mii driver in drivers/net
richardretanubun (2):
Adds two more ethernet interface to 83xx
NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
board/cray/L1/u-boot.lds | 2 +-
board/csb272/u-boot.lds | 2 +-
board/csb472/u-boot.lds | 2 +-
board/dave/PPChameleonEVB/u-boot.lds | 2 +-
board/eric/u-boot.lds | 2 +-
board/esd/ar405/u-boot.lds | 2 +-
board/esd/dp405/u-boot.lds | 2 +-
board/esd/hub405/u-boot.lds | 2 +-
board/esd/voh405/u-boot.lds | 2 +-
board/g2000/u-boot.lds | 2 +-
board/ml2/u-boot.lds | 2 +-
board/mpl/mip405/u-boot.lds | 2 +-
board/sandburst/karef/u-boot.lds | 2 +-
board/sandburst/karef/u-boot.lds.debug | 2 +-
board/sandburst/metrobox/u-boot.lds | 2 +-
board/sandburst/metrobox/u-boot.lds.debug | 2 +-
board/sbc405/u-boot.lds | 2 +-
board/sorcery/sorcery.c | 2 +
board/xilinx/ml300/u-boot.lds | 2 +-
cpu/ixp/cpu.c | 9 +
cpu/mips/au1x00_eth.c | 2 +-
cpu/mips/cpu.c | 9 +
cpu/mpc8220/cpu.c | 13 ++
cpu/mpc8260/cpu.c | 13 ++
cpu/mpc83xx/cpu.c | 20 ++-
cpu/mpc85xx/cpu.c | 25 ++-
cpu/mpc8xx/cpu.c | 17 ++
cpu/ppc4xx/Makefile | 1 -
cpu/ppc4xx/cpu.c | 14 ++
{cpu/ppc4xx => drivers/net}/4xx_enet.c | 9 -
drivers/net/Makefile | 5 +-
drivers/net/mcffec.c | 18 +--
drivers/net/mcfmii.c | 321 +++++++++++++++++++++++++++++
drivers/net/xilinx_emaclite.c | 2 +-
drivers/qe/uec.c | 54 +++++-
drivers/qe/uec_phy.c | 79 +++++++
include/configs/AR405.h | 1 +
include/configs/ASH405.h | 1 +
include/configs/CMS700.h | 1 +
include/configs/CPCI405.h | 1 +
include/configs/CPCI4052.h | 1 +
include/configs/CPCI405AB.h | 1 +
include/configs/CPCI405DT.h | 1 +
include/configs/CPCIISER4.h | 1 +
include/configs/CRAYL1.h | 2 +
include/configs/DP405.h | 1 +
include/configs/DU405.h | 1 +
include/configs/DU440.h | 1 +
include/configs/ERIC.h | 1 +
include/configs/EXBITGEN.h | 1 +
include/configs/G2000.h | 1 +
include/configs/HH405.h | 1 +
include/configs/HUB405.h | 1 +
include/configs/JSE.h | 1 +
include/configs/KAREF.h | 1 +
include/configs/METROBOX.h | 1 +
include/configs/MIP405.h | 1 +
include/configs/OCRTC.h | 1 +
include/configs/ORSG.h | 1 +
include/configs/PCI405.h | 1 +
include/configs/PIP405.h | 1 +
include/configs/PLU405.h | 1 +
include/configs/PMC405.h | 1 +
include/configs/PMC440.h | 1 +
include/configs/PPChameleonEVB.h | 1 +
include/configs/VOH405.h | 1 +
include/configs/VOM405.h | 1 +
include/configs/W7OLMC.h | 1 +
include/configs/W7OLMG.h | 1 +
include/configs/WUH405.h | 1 +
include/configs/XPEDITE1K.h | 1 +
include/configs/alpr.h | 1 +
include/configs/amcc-common.h | 1 +
include/configs/csb272.h | 1 +
include/configs/csb472.h | 1 +
include/configs/korat.h | 1 +
include/configs/lwmon5.h | 1 +
include/configs/netstal-common.h | 1 +
include/configs/p3p440.h | 1 +
include/configs/pcs440ep.h | 1 +
include/configs/quad100hd.h | 1 +
include/configs/sbc405.h | 1 +
include/configs/sc3.h | 2 +
include/configs/zeus.h | 1 +
include/netdev.h | 7 +
net/eth.c | 47 +----
86 files changed, 654 insertions(+), 99 deletions(-)
rename {cpu/ppc4xx => drivers/net}/4xx_enet.c (99%)
create mode 100644 drivers/net/mcfmii.c
regards,
Ben
next reply other threads:[~2008-11-10 5:51 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-10 5:51 Ben Warren [this message]
2008-11-18 20:39 ` [U-Boot] Pull request - net Wolfgang Denk
2008-11-18 21:03 ` Ben Warren
-- strict thread matches above, loose matches on Subject: below --
2010-10-12 6:39 Ben Warren
2010-10-12 18:45 ` Wolfgang Denk
2010-08-09 18:56 Ben Warren
2010-08-10 21:00 ` Wolfgang Denk
2010-07-12 7:17 Ben Warren
2010-06-21 5:18 Ben Warren
2010-06-22 19:29 ` Wolfgang Denk
2010-05-03 22:06 Ben Warren
2010-05-04 21:05 ` Wolfgang Denk
2010-02-07 7:08 Ben Warren
2010-02-08 21:16 ` Wolfgang Denk
2010-02-01 6:47 Ben Warren
2010-02-01 8:04 ` Prafulla Wadaskar
2010-02-01 8:07 ` Ben Warren
2010-02-03 19:15 ` Wolfgang Denk
2009-11-24 22:19 Ben Warren
2009-11-24 22:27 ` Wolfgang Denk
2009-11-11 21:30 Ben Warren
2009-11-11 22:11 ` Wolfgang Denk
2009-10-19 18:41 Ben Warren
2009-10-24 20:16 ` Wolfgang Denk
2009-10-11 6:52 Ben Warren
2009-10-12 21:47 ` Wolfgang Denk
2009-10-05 7:27 Ben Warren
2009-10-05 21:33 ` Wolfgang Denk
2009-08-21 17:38 Ben Warren
2009-08-21 21:04 ` Wolfgang Denk
2009-08-10 22:11 Ben Warren
2009-08-11 19:47 ` Wolfgang Denk
2009-08-11 20:17 ` Ben Warren
2009-08-11 21:05 ` Wolfgang Denk
2009-08-08 9:56 Ben Warren
2009-08-08 10:09 ` Wolfgang Denk
2009-07-23 6:33 Ben Warren
2009-07-23 17:29 ` Wolfgang Denk
2009-07-21 7:27 Ben Warren
2009-07-21 7:48 ` Wolfgang Denk
2009-07-21 18:53 ` Prafulla Wadaskar
2009-07-21 21:12 ` Wolfgang Denk
2009-06-15 7:17 Ben Warren
2009-06-15 9:21 ` Wolfgang Denk
2009-06-09 6:04 Ben Warren
2009-06-09 20:51 ` Wolfgang Denk
2009-06-10 8:14 ` Prafulla Wadaskar
2009-06-10 16:32 ` Ben Warren
2009-06-08 4:27 Ben Warren
2009-06-08 14:06 ` Liew Tsi Chung-R5AAHP
2009-06-08 21:54 ` Wolfgang Denk
2009-06-08 21:59 ` Ben Warren
2009-06-09 6:01 ` Ben Warren
2009-04-20 6:28 Ben Warren
2009-04-24 11:37 ` Wolfgang Denk
2009-02-23 7:52 Ben Warren
2009-02-23 21:21 ` Wolfgang Denk
2009-02-23 22:18 ` Ben Warren
2009-02-10 7:05 Ben Warren
2009-02-11 21:26 ` Wolfgang Denk
2009-02-01 4:39 Ben Warren
2009-02-01 20:36 ` Wolfgang Denk
2008-12-05 7:05 Ben Warren
2008-12-09 0:02 ` Wolfgang Denk
2008-10-14 6:07 Ben Warren
2008-10-14 11:07 ` Wolfgang Denk
2008-09-03 4:26 [U-Boot] Pull request - NET Ben Warren
2008-09-03 20:53 ` Wolfgang Denk
2008-08-27 7:46 [U-Boot] Pull request - net Ben Warren
2008-08-27 11:55 ` Wolfgang Denk
2008-08-19 6:20 Ben Warren
2008-08-20 22:39 ` Wolfgang Denk
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=4917CBCA.7010203@gmail.com \
--to=biggerbadderben@gmail.com \
--cc=u-boot@lists.denx.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox