1. 24 2月, 2014 5 次提交
  2. 22 2月, 2014 18 次提交
  3. 21 2月, 2014 12 次提交
  4. 20 2月, 2014 5 次提交
    • A
      Merge branch 'u-boot/master' into 'u-boot-arm/master' · 3e113502
      Albert ARIBAUD 提交于
      Conflicts:
      	Makefile
      	drivers/net/npe/Makefile
      
      These two conflicts arise from commit 0b2d3f20
      ("ARM: NET: Remove the IXP NPE ethernet driver") and are
      resolved by deleting the drivers/net/npe/Makefile file
      and removing the CONFIG_IXP4XX_NPE line from Makefile.
      3e113502
    • A
      arc: remove "hardware.h" · 39abd65c
      Alexey Brodkin 提交于
      This file was only required for compilation of designware_i2c driver.
      Since explicit inclusion of "hardware.h" is now removed from the driver
      we may safely remove this empty header as well.
      Signed-off-by: NAlexey Brodkin <abrodkin@synopsys.com>
      
      Cc: Tom Rini <trini@ti.com>
      Cc: Heiko Schocher <hs@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Vipin Kumar <vipin.kumar@st.com>
      Cc: Armando Visconti <armando.visconti@st.com>
      39abd65c
    • A
      designware_i2c: remove inclusion of <asm/arch/hardware.h> · 3d93f695
      Alexey Brodkin 提交于
      As soon as all boards have their CONFIG_SYS_I2C_BASE defined in
      configuration files instead of "asm/arch/hardware.h" it's safe to remove
      the inclusion in question and make driver platform-independent.
      
      Cc: Tom Rini <trini@ti.com>
      Cc: Heiko Schocher <hs@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Vipin Kumar <vipin.kumar@st.com>
      Cc: Armando Visconti <armando.visconti@st.com>
      Signed-off-by: NAlexey Brodkin <abrodkin@synopsys.com>
      3d93f695
    • A
      spear: move CONFIG_SYS_I2C_BASE from arch-spear/hardware to board configs · f93f589c
      Alexey Brodkin 提交于
      Having CONFIG_SYS_I2C_BASE requires DW I2C driver to explicitly include
      <arch/hardware.h> which other platforms may not have at all.
      
      It's always good to have a driver platform-independent.
      Signed-off-by: NAlexey Brodkin <abrodkin@synopsys.com>
      
      Cc: Tom Rini <trini@ti.com>
      Cc: Heiko Schocher <hs@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Vipin Kumar <vipin.kumar@st.com>
      Cc: Armando Visconti <armando.visconti@st.com>
      f93f589c
    • H
      OMAP24xx I2C: Add support for set-speed · d5243359
      Hannes Petermaier 提交于
      Adds support for set-speed on the OMAP24xx I2C Adapter.
      
      Changes to omap24_i2c_write(...) for polling ARDY Bit from IRQ-Status.
      Otherwise on a subsequent call the transfer of last byte from the
      predecessor is aborted and therefore lost. For exmaple when
      i2c_write(...) is followed by a i2c_setspeed(...) (which has to
      deactivate and activate master for changing psc,...).
      
      Minor cosmetical changes.
      Signed-off-by: NHannes Petermaier <oe5hpm@oevsv.at>
      Cc: Heiko Schocher <hs@denx.de>
      d5243359