mbox

[U-Boot] Pull request: u-boot-net/master

Message ID CANr=Z=aAFm8_nh_9z4EaPyOitH-Jb+7yqEOM2VMtnOKxwq4Gdg@mail.gmail.com
State Accepted
Delegated to: Wolfgang Denk
Headers show

Pull-request

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

Message

Joe Hershberger May 15, 2012, 10:58 p.m. UTC
The following changes since commit 0a6deb3251a68b5be640ab1b848ca67e906b75ce:
  Wolfgang Denk (1):
        Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging

are available in the git repository at:

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

Joe Hershberger (10):
      net: Remove volatile from net API
      net: cosmetic: net.h checkpatch compliance
      net: cosmetic: bootp.* checkpatch compliance
      net: cosmetic: eth.c checkpatch compliance
      net: cosmetic: net.c checkpatch compliance
      net: cosmetic: nfs.* checkpatch compliance
      net: cosmetic: rarp.* checkpatch compliance
      net: cosmetic: sntp.* checkpatch compliance
      net: cosmetic: tftp.* checkpatch compliance
      net: cosmetic: netconsole.c checkpatch compliance

Mike Frysinger (2):
      net: punt bd->bi_ip_addr
      net: move bootfile init into eth_initialize

 arch/arm/include/asm/u-boot.h        |    1 -
 arch/arm/lib/board.c                 |   11 -
 arch/avr32/include/asm/u-boot.h      |    1 -
 arch/avr32/lib/board.c               |    5 -
 arch/blackfin/include/asm/u-boot.h   |    1 -
 arch/blackfin/lib/board.c            |   10 +-
 arch/m68k/include/asm/u-boot.h       |    1 -
 arch/m68k/lib/board.c                |   14 --
 arch/microblaze/include/asm/u-boot.h |    1 -
 arch/microblaze/lib/board.c          |    7 -
 arch/mips/include/asm/u-boot.h       |    1 -
 arch/mips/lib/board.c                |   11 -
 arch/nds32/include/asm/u-boot.h      |    1 -
 arch/nds32/lib/board.c               |    9 -
 arch/nios2/include/asm/u-boot.h      |    1 -
 arch/nios2/lib/board.c               |    2 -
 arch/openrisc/include/asm/u-boot.h   |    1 -
 arch/powerpc/include/asm/u-boot.h    |    1 -
 arch/powerpc/lib/board.c             |   11 -
 arch/sandbox/include/asm/u-boot.h    |    1 -
 arch/sandbox/lib/board.c             |    3 -
 arch/sh/include/asm/u-boot.h         |    1 -
 arch/sh/lib/board.c                  |   22 +--
 arch/sparc/include/asm/u-boot.h      |    1 -
 arch/sparc/lib/board.c               |    7 -
 arch/x86/include/asm/init_helpers.h  |    2 -
 arch/x86/include/asm/u-boot.h        |    1 -
 arch/x86/lib/board.c                 |    6 -
 arch/x86/lib/init_helpers.c          |   20 --
 board/esd/cpci405/cpci405.c          |    9 +-
 common/cmd_bdinfo.c                  |   28 ++--
 common/cmd_nvedit.c                  |   16 +--
 common/main.c                        |    1 -
 drivers/net/netconsole.c             |  122 ++++++------
 include/common.h                     |    4 +
 include/net.h                        |  146 ++++++++-------
 net/bootp.c                          |  344 +++++++++++++++++-----------------
 net/bootp.h                          |   56 +++---
 net/eth.c                            |   89 +++++----
 net/net.c                            |   58 +++----
 net/nfs.c                            |  300 +++++++++++++++---------------
 net/nfs.h                            |    2 +-
 net/rarp.c                           |   30 ++--
 net/rarp.h                           |    4 +-
 net/sntp.c                           |   31 ++--
 net/sntp.h                           |    2 +-
 net/tftp.c                           |   36 ++--
 net/tftp.h                           |    2 +-
 48 files changed, 648 insertions(+), 786 deletions(-)

Comments

Wolfgang Denk May 20, 2012, 8:37 p.m. UTC | #1
Dear Joe Hershberger,

In message <CANr=Z=aAFm8_nh_9z4EaPyOitH-Jb+7yqEOM2VMtnOKxwq4Gdg@mail.gmail.com> you wrote:
> The following changes since commit 0a6deb3251a68b5be640ab1b848ca67e906b75ce:
>   Wolfgang Denk (1):
>         Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-net.git master
> 
> Joe Hershberger (10):
>       net: Remove volatile from net API
>       net: cosmetic: net.h checkpatch compliance
>       net: cosmetic: bootp.* checkpatch compliance
>       net: cosmetic: eth.c checkpatch compliance
>       net: cosmetic: net.c checkpatch compliance
>       net: cosmetic: nfs.* checkpatch compliance
>       net: cosmetic: rarp.* checkpatch compliance
>       net: cosmetic: sntp.* checkpatch compliance
>       net: cosmetic: tftp.* checkpatch compliance
>       net: cosmetic: netconsole.c checkpatch compliance
> 
> Mike Frysinger (2):
>       net: punt bd->bi_ip_addr
>       net: move bootfile init into eth_initialize
> 
>  arch/arm/include/asm/u-boot.h        |    1 -
>  arch/arm/lib/board.c                 |   11 -
>  arch/avr32/include/asm/u-boot.h      |    1 -
>  arch/avr32/lib/board.c               |    5 -
>  arch/blackfin/include/asm/u-boot.h   |    1 -
>  arch/blackfin/lib/board.c            |   10 +-
>  arch/m68k/include/asm/u-boot.h       |    1 -
>  arch/m68k/lib/board.c                |   14 --
>  arch/microblaze/include/asm/u-boot.h |    1 -
>  arch/microblaze/lib/board.c          |    7 -
>  arch/mips/include/asm/u-boot.h       |    1 -
>  arch/mips/lib/board.c                |   11 -
>  arch/nds32/include/asm/u-boot.h      |    1 -
>  arch/nds32/lib/board.c               |    9 -
>  arch/nios2/include/asm/u-boot.h      |    1 -
>  arch/nios2/lib/board.c               |    2 -
>  arch/openrisc/include/asm/u-boot.h   |    1 -
>  arch/powerpc/include/asm/u-boot.h    |    1 -
>  arch/powerpc/lib/board.c             |   11 -
>  arch/sandbox/include/asm/u-boot.h    |    1 -
>  arch/sandbox/lib/board.c             |    3 -
>  arch/sh/include/asm/u-boot.h         |    1 -
>  arch/sh/lib/board.c                  |   22 +--
>  arch/sparc/include/asm/u-boot.h      |    1 -
>  arch/sparc/lib/board.c               |    7 -
>  arch/x86/include/asm/init_helpers.h  |    2 -
>  arch/x86/include/asm/u-boot.h        |    1 -
>  arch/x86/lib/board.c                 |    6 -
>  arch/x86/lib/init_helpers.c          |   20 --
>  board/esd/cpci405/cpci405.c          |    9 +-
>  common/cmd_bdinfo.c                  |   28 ++--
>  common/cmd_nvedit.c                  |   16 +--
>  common/main.c                        |    1 -
>  drivers/net/netconsole.c             |  122 ++++++------
>  include/common.h                     |    4 +
>  include/net.h                        |  146 ++++++++-------
>  net/bootp.c                          |  344 +++++++++++++++++-----------------
>  net/bootp.h                          |   56 +++---
>  net/eth.c                            |   89 +++++----
>  net/net.c                            |   58 +++----
>  net/nfs.c                            |  300 +++++++++++++++---------------
>  net/nfs.h                            |    2 +-
>  net/rarp.c                           |   30 ++--
>  net/rarp.h                           |    4 +-
>  net/sntp.c                           |   31 ++--
>  net/sntp.h                           |    2 +-
>  net/tftp.c                           |   36 ++--
>  net/tftp.h                           |    2 +-
>  48 files changed, 648 insertions(+), 786 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk