mbox

[U-Boot] Please pull u-boot-dm

Message ID CAPnjgZ0zuwRgb1aNxVtutKz+Gsaj0UJ5p2fVp_4wrDrxBsVnXw@mail.gmail.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

http://git.denx.de/u-boot-dm.git

Message

Simon Glass Feb. 20, 2015, 4:17 p.m. UTC
Hi Tom,

This is the last of the driver model Kconfig conversion (for now at
least), the debug UART stuff and a few fixes.


The following changes since commit 1320112c8aa58345d71a5a46f3bf6a52589f1f2b:

  Merge branch 'master' of git://git.denx.de/u-boot-fdt (2015-02-18
08:46:50 -0500)

are available in the git repository at:

  http://git.denx.de/u-boot-dm.git

for you to fetch changes up to 66c03151fc8752c29b7d17003b9c87218640b10b:

  dm: Protect device_unbind() with CONFIG_DM_DEVICE_REMOVE (2015-02-19
07:30:31 -0700)

----------------------------------------------------------------
Marek Vasut (1):
      dm: Protect device_unbind() with CONFIG_DM_DEVICE_REMOVE

Masahiro Yamada (1):
      Documentation: gpio: fix bindings document

Simon Glass (6):
      dm: cros_ec: Convert to Kconfig
      dm: Move CONFIG_I2C_COMPAT to Kconfig
      dm: mx6: Adjust mx6sxsabresd to use Kconfig for DM_THERMAL
      serial: Support an early UART for debugging
      serial: ns16550: Add access functions that don't need platdata
      serial: ns16550: Support debug UART

 configs/minnowmax_defconfig            |   2 -
 configs/mx6sxsabresd_defconfig         |   2 +
 configs/mx6sxsabresd_spl_defconfig     |   2 +
 configs/odroid_defconfig               |   2 +
 configs/peach-pi_defconfig             |   4 ++
 configs/peach-pit_defconfig            |   4 ++
 configs/sandbox_defconfig              |   5 ++
 configs/snow_defconfig                 |   5 ++
 doc/device-tree-bindings/gpio/gpio.txt |   5 +-
 drivers/i2c/Kconfig                    |   9 ++++
 drivers/input/Kconfig                  |   6 +++
 drivers/misc/Kconfig                   |  48 ++++++++++++++++-
 drivers/serial/Kconfig                 |  59 ++++++++++++++++++++
 drivers/serial/ns16550.c               |  98 +++++++++++++++++++++++++++-------
 include/configs/exynos5-common.h       |   2 +
 include/configs/exynos5-dt-common.h    |   3 --
 include/configs/mx6sxsabresd.h         |   2 -
 include/configs/odroid.h               |   2 -
 include/configs/peach-pi.h             |   1 -
 include/configs/peach-pit.h            |   1 -
 include/configs/sandbox.h              |   4 --
 include/configs/snow.h                 |   2 -
 include/debug_uart.h                   | 139
++++++++++++++++++++++++++++++++++++++++++++++++
 include/dm/device-internal.h           |   4 ++
 24 files changed, 371 insertions(+), 40 deletions(-)
 create mode 100644 include/debug_uart.h

Regards,
Simon

Comments

Tom Rini Feb. 22, 2015, 2:56 a.m. UTC | #1
On Fri, Feb 20, 2015 at 09:17:42AM -0700, Simon Glass wrote:

> Hi Tom,
> 
> This is the last of the driver model Kconfig conversion (for now at
> least), the debug UART stuff and a few fixes.
> 
> 
> The following changes since commit 1320112c8aa58345d71a5a46f3bf6a52589f1f2b:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fdt (2015-02-18
> 08:46:50 -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-dm.git
> 
> for you to fetch changes up to 66c03151fc8752c29b7d17003b9c87218640b10b:
> 
>   dm: Protect device_unbind() with CONFIG_DM_DEVICE_REMOVE (2015-02-19
> 07:30:31 -0700)
> 

Applied to u-boot/master, thanks!