1. 14 11月, 2012 2 次提交
  2. 12 11月, 2012 2 次提交
    • G
      mfd: Remove Unicode Byte Order Marks from da9055 · 90a38d99
      Geert Uytterhoeven 提交于
      Older gcc (< 4.4) doesn't like files starting with Unicode BOMs:
      
      include/linux/mfd/da9055/core.h:1: error: stray ‘\357’ in program
      include/linux/mfd/da9055/core.h:1: error: stray ‘\273’ in program
      include/linux/mfd/da9055/core.h:1: error: stray ‘\277’ in program
      include/linux/mfd/da9055/pdata.h:1: error: stray ‘\357’ in program
      include/linux/mfd/da9055/pdata.h:1: error: stray ‘\273’ in program
      include/linux/mfd/da9055/pdata.h:1: error: stray ‘\277’ in program
      include/linux/mfd/da9055/reg.h:1: error: stray ‘\357’ in program
      include/linux/mfd/da9055/reg.h:1: error: stray ‘\273’ in program
      include/linux/mfd/da9055/reg.h:1: error: stray ‘\277’ in program
      
      Remove the BOMs, the rest of the files is plain ASCII anyway.
      
      Output of "file" before:
      
      include/linux/mfd/da9055/core.h:  UTF-8 Unicode (with BOM) C program text
      include/linux/mfd/da9055/pdata.h: UTF-8 Unicode (with BOM) C program text
      include/linux/mfd/da9055/reg.h:   UTF-8 Unicode (with BOM) C program text
      
      Output of "file" after:
      
      include/linux/mfd/da9055/core.h:  ASCII C program text
      include/linux/mfd/da9055/pdata.h: ASCII C program text
      include/linux/mfd/da9055/reg.h:   ASCII C program text
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      90a38d99
    • L
      mfd: Provide the STMPE driver with its own IRQ domain · 76f93992
      Lee Jones 提交于
      The STMPE driver is yet another IRQ controller which requires its
      own IRQ domain. So, we provide it with one.
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      76f93992
  3. 08 11月, 2012 1 次提交
  4. 06 11月, 2012 3 次提交
  5. 23 10月, 2012 1 次提交
  6. 06 10月, 2012 2 次提交
  7. 02 10月, 2012 1 次提交
  8. 01 10月, 2012 1 次提交
  9. 29 9月, 2012 1 次提交
  10. 25 9月, 2012 1 次提交
    • M
      backlight: Add TPS65217 WLED driver · eebfdc17
      Matthias Kaehlcke 提交于
      The TPS65217 chip contains a boost converter and current sinks which can be
      used to drive LEDs for use as backlights. Expose this functionality via the
      backlight API.
      
      Tested on an AM335x based custom board with a single WLED string, using
      different values for ISEL and FDIM (though it would be hard to tell the
      difference except for the value in WLEDCTRL1). Both instantiation through the
      device tree and by passing platform data have been tested. Testing has been
      done with an Androidized 3.2 kernel from the rowboat project. Koen Kooi
      reported the driver to be working on a Beaglebone board with LCD3 cape
      Signed-off-by: NMatthias Kaehlcke <matthias@kaehlcke.net>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      eebfdc17
  11. 24 9月, 2012 4 次提交
  12. 21 9月, 2012 1 次提交
    • J
      power_supply: Enable battery-charger for 88pm860x · a830d28b
      Jett.Zhou 提交于
      There are charger and battery measurement feature for 88pm860x PMIC.
      
      For charger, it can support pre-charge with small current when battery is
      nearly exausted and then changed into fast-charge with CC&CV mode.
      
      For battery monitor, it can support battery measurement such as
      vbat,vsys,vchg and ibat etc,it can aslo accumulating the Coulomb value
      charged or discharged from battery based on Conlomb Counter, we use it
      to estimate battery capacity.
      Signed-off-by: NJett.Zhou <jtzhou@marvell.com>
      Signed-off-by: NAnton Vorontsov <anton.vorontsov@linaro.org>
      a830d28b
  13. 20 9月, 2012 1 次提交
  14. 19 9月, 2012 5 次提交
  15. 17 9月, 2012 5 次提交
  16. 16 9月, 2012 1 次提交
    • M
      mfd: core: Push irqdomain mapping out into devices · 0848c94f
      Mark Brown 提交于
      Currently the MFD core supports remapping MFD cell interrupts using an
      irqdomain but only if the MFD is being instantiated using device tree
      and only if the device tree bindings use the pattern of registering IPs
      in the device tree with compatible properties.  This will be actively
      harmful for drivers which support non-DT platforms and use this pattern
      for their DT bindings as it will mean that the core will silently change
      remapping behaviour and it is also limiting for drivers which don't do
      DT with this particular pattern.  There is also a potential fragility if
      there are interrupts not associated with MFD cells and all the cells are
      omitted from the device tree for some reason.
      
      Instead change the code to take an IRQ domain as an optional argument,
      allowing drivers to take the decision about the parent domain for their
      interrupts.  The one current user of this feature is ab8500-core, it has
      the domain lookup pushed out into the driver.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      0848c94f
  17. 14 9月, 2012 6 次提交
  18. 13 9月, 2012 1 次提交
  19. 11 9月, 2012 1 次提交