All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-net
@ 2015-12-22 17:58 Joe Hershberger
  2015-12-24  3:47 ` Tom Rini
  2016-01-02 17:09 ` Tom Rini
  0 siblings, 2 replies; 26+ messages in thread
From: Joe Hershberger @ 2015-12-22 17:58 UTC (permalink / raw)
  To: u-boot

A few patches that came in during the merge window and appear harmless.

These cause no additional build warnings or errors.

Thanks,
-Joe

The following changes since commit 4832e17787acb29734d895751bc7a594908aecc6:

  Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
(2015-12-18 07:28:24 -0500)

are available in the git repository at:


  git://git.denx.de/u-boot-net.git master

for you to fetch changes up to 140bc33e05382545b762ef51d6fc31dd5b6ec82c:

  net: e1000: Mark _disable_wr() and _write_status() as __maybe_unused
(2015-12-21 20:01:57 -0600)

----------------------------------------------------------------
Bin Meng (5):
      fdt: Deprecate "usbethaddr" usage in fdt_fixup_ethernet()
      fdt: Rewrite the logic in fdt_fixup_ethernet()
      net: e1000: Remove dead codes wrapped by #if 0
      net: e1000: Remove CONFIG_MVBC_1G
      net: e1000: Mark _disable_wr() and _write_status() as __maybe_unused

Fabio Estevam (1):
      include: net: Simplify the usage of __always_inline

 common/fdt_support.c    | 64 ++++++++++++++++++++--------------------
 drivers/net/e1000.c     | 77 +------------------------------------------------
 drivers/net/e1000.h     | 31 --------------------
 drivers/net/e1000_spi.c |  9 +++---
 include/net.h           |  9 +++---
 5 files changed, 42 insertions(+), 148 deletions(-)

^ permalink raw reply	[flat|nested] 26+ messages in thread
* [U-Boot] Pull request: u-boot-net
@ 2012-04-04 16:06 Joe Hershberger
  2012-04-09 15:16 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Joe Hershberger @ 2012-04-04 16:06 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

Please pull following commits:

The following changes since commit c008b6f6dd6b8965e9a7654ffbce75bb9ff7a3b5:
  Wolfgang Denk (1):
        Prepare v2012.04-rc1

are available in the git repository at:

  git://git.denx.de/u-boot-net.git master

Amit Virdi (1):
      net/designware: Change timeout loop implementation

Armando Visconti (2):
      net/designware: Consecutive writes must have delay
      net/designware: Set ANAR to 0x1e1

Eric Miao (1):
      net/eth.c: fix eth_write_hwaddr() to use dev->enetaddr as fall back

Joe Hershberger (1):
      Update net subsystem maintainer in doc/git-mailrc

Stefan Bigler (1):
      mvgbe: remove warning for unused methods

Stephan Linz (4):
      net: ll_temac: Add LL TEMAC driver to u-boot
      microblaze: Enable several ethernet driver compilation
      microblaze: Add faked LL_TEMAC driver configuration
      microblaze: Wire up LL_TEMAC driver initialization

Vikas Manocha (1):
      net/designware: Program phy registers when auto-negotiation is ON

Vipin KUMAR (3):
      net/designware: Fix to restore hw mac address
      net/designware: Fix the max frame length size
      net/designware: Phy address fix

Vipin Kumar (1):
      net/designware: Try configuring phy on each dw_eth_init

 board/xilinx/microblaze-generic/config.mk          |    6 +-
 .../xilinx/microblaze-generic/microblaze-generic.c |   36 ++
 board/xilinx/microblaze-generic/xparameters.h      |   12 +-
 doc/git-mailrc                                     |    3 +-
 drivers/net/Makefile                               |    2 +
 drivers/net/designware.c                           |  128 +++++--
 drivers/net/designware.h                           |    3 +-
 drivers/net/mvgbe.c                                |    2 +
 drivers/net/xilinx_ll_temac.c                      |  399 ++++++++++++++++++++
 drivers/net/xilinx_ll_temac.h                      |  310 +++++++++++++++
 drivers/net/xilinx_ll_temac_fifo.c                 |  143 +++++++
 drivers/net/xilinx_ll_temac_fifo.h                 |  122 ++++++
 drivers/net/xilinx_ll_temac_mdio.c                 |  180 +++++++++
 drivers/net/xilinx_ll_temac_mdio.h                 |   53 +++
 drivers/net/xilinx_ll_temac_sdma.c                 |  370 ++++++++++++++++++
 drivers/net/xilinx_ll_temac_sdma.h                 |  281 ++++++++++++++
 include/configs/microblaze-generic.h               |   11 +-
 include/netdev.h                                   |   12 +
 net/eth.c                                          |    3 +-
 19 files changed, 2025 insertions(+), 51 deletions(-)
 create mode 100644 drivers/net/xilinx_ll_temac.c
 create mode 100644 drivers/net/xilinx_ll_temac.h
 create mode 100644 drivers/net/xilinx_ll_temac_fifo.c
 create mode 100644 drivers/net/xilinx_ll_temac_fifo.h
 create mode 100644 drivers/net/xilinx_ll_temac_mdio.c
 create mode 100644 drivers/net/xilinx_ll_temac_mdio.h
 create mode 100644 drivers/net/xilinx_ll_temac_sdma.c
 create mode 100644 drivers/net/xilinx_ll_temac_sdma.h

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2016-01-14 13:20 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-22 17:58 [U-Boot] Pull request: u-boot-net Joe Hershberger
2015-12-24  3:47 ` Tom Rini
2015-12-29  3:02   ` Joe Hershberger
2015-12-29 14:09     ` Tom Rini
2016-01-02 17:09 ` Tom Rini
2016-01-04  2:35   ` Bin Meng
2016-01-04  3:46     ` Tom Rini
2016-01-04  3:56       ` Bin Meng
2016-01-04  8:31         ` Bin Meng
2016-01-04 14:24           ` Tom Rini
2016-01-05  4:08             ` Bin Meng
2016-01-05 13:18               ` Tom Rini
2016-01-04 11:46         ` Dirk Eibach
2016-01-04 13:48           ` Bin Meng
2016-01-04 14:22             ` Tom Rini
2016-01-05  4:18               ` Bin Meng
2016-01-05 13:18                 ` Tom Rini
2016-01-07  2:49                   ` Bin Meng
2016-01-07 16:29                     ` Tom Rini
2016-01-13 20:58                       ` Joe Hershberger
2016-01-13 23:01                         ` Tom Rini
2016-01-13 23:10                         ` Tom Rini
2016-01-14 13:20                         ` Tom Rini
2016-01-04 14:32         ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2012-04-04 16:06 Joe Hershberger
2012-04-09 15:16 ` Wolfgang Denk

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.