1. 19 6月, 2013 1 次提交
  2. 18 6月, 2013 1 次提交
  3. 12 6月, 2013 2 次提交
  4. 17 5月, 2013 1 次提交
  5. 16 5月, 2013 1 次提交
    • D
      mfd: tps65912: Select MFD_CORE · c972c128
      David Rientjes 提交于
      CONFIG_MFD_CORE must be selected for TPS65912 to properly buid.
      Otherwise it results in a link error:
      
      	drivers/built-in.o: In function `tps65912_device_init':
      	(.text+0x587e4): undefined reference to `mfd_add_devices'
      	drivers/built-in.o: In function `tps65912_device_init':
      	(.text+0x5884c): undefined reference to `mfd_remove_devices'
      	drivers/built-in.o: In function `tps65912_device_exit':
      	(.text+0x58878): undefined reference to `mfd_remove_devices'
      Signed-off-by: NDavid Rientjes <rientjes@google.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      c972c128
  6. 20 4月, 2013 1 次提交
  7. 19 4月, 2013 1 次提交
  8. 17 4月, 2013 1 次提交
  9. 09 4月, 2013 4 次提交
  10. 06 4月, 2013 1 次提交
  11. 05 4月, 2013 5 次提交
  12. 31 3月, 2013 1 次提交
  13. 29 3月, 2013 1 次提交
  14. 27 3月, 2013 1 次提交
  15. 26 3月, 2013 1 次提交
  16. 12 3月, 2013 1 次提交
  17. 14 2月, 2013 1 次提交
  18. 22 1月, 2013 1 次提交
    • A
      mfd: tps65910: Select REGMAP_IRQ in Kconfig to fix build error · ee487114
      AnilKumar Ch 提交于
      TPS65910 mfd driver uses functions that are only avaiable when
      REGMAP_IRQ is enabled. So "select REGMAP_IRQ" is added to mfd
      Kconfig to fix below build error:
      
      drivers/built-in.o: In function `tps65910_irq_exit':
      /media/anil/kernel/drivers/mfd/tps65910.c:265: undefined reference to `regmap_del_irq_chip'
      drivers/built-in.o: In function `tps65910_irq_init':
      /media/anil/kernel/drivers/mfd/tps65910.c:254: undefined reference to `regmap_add_irq_chip'
      drivers/built-in.o: In function `tps65910_i2c_probe':
      /media/anil/kernel/drivers/mfd/tps65910.c:509: undefined reference to `regmap_irq_get_domain'
      make: *** [vmlinux] Error 1
      Signed-off-by: NAnilKumar Ch <anilkumar@ti.com>
      Tested-by: NMatt Porter <mporter@ti.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      ee487114
  19. 17 1月, 2013 1 次提交
  20. 09 12月, 2012 1 次提交
    • A
      mfd: tps80031: MFD_TPS80031 needs to select REGMAP_IRQ · c2ace4fd
      Axel Lin 提交于
      This driver uses regmap_irq APIs, thus need to select REGMAP_IRQ.
      IRQ_DOMAIN will be selected if select REGMAP_IRQ, thus remove it here.
      
      This fixes below build errors:
      
      drivers/built-in.o: In function `tps80031_remove':
      drivers/mfd/tps80031.c:534: undefined reference to `regmap_del_irq_chip'
      drivers/built-in.o: In function `tps80031_irq_init':
      drivers/mfd/tps80031.c:305: undefined reference to `regmap_add_irq_chip'
      drivers/built-in.o: In function `tps80031_probe':
      drivers/mfd/tps80031.c:496: undefined reference to `regmap_irq_get_domain'
      drivers/mfd/tps80031.c:512: undefined reference to `regmap_del_irq_chip'
      make: *** [vmlinux] Error 1
      Signed-off-by: NAxel Lin <axel.lin@ingics.com>
      Acked-by: NLaxman Dewangan <ldewangan@nvidia.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      c2ace4fd
  21. 27 11月, 2012 1 次提交
    • A
      mfd: tps65090: MFD_TPS65090 needs to select REGMAP_IRQ · 64cdfe25
      Axel Lin 提交于
      This fixes below build error:
      
      drivers/built-in.o: In function `tps65090_i2c_probe':
      drivers/mfd/tps65090.c:180: undefined reference to `regmap_add_irq_chip'
      drivers/mfd/tps65090.c:190: undefined reference to `regmap_irq_chip_get_base'
      drivers/mfd/tps65090.c:203: undefined reference to `regmap_del_irq_chip'
      drivers/built-in.o: In function `tps65090_i2c_remove':
      drivers/mfd/tps65090.c:213: undefined reference to `regmap_del_irq_chip'
      make: *** [vmlinux] Error 1
      Signed-off-by: NAxel Lin <axel.lin@ingics.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      64cdfe25
  22. 23 11月, 2012 1 次提交
  23. 21 11月, 2012 2 次提交
  24. 20 11月, 2012 2 次提交
  25. 16 11月, 2012 2 次提交
  26. 15 11月, 2012 1 次提交
    • L
      mfd: tps6586x: move regulator dt parsing to regulator driver · 64e48160
      Laxman Dewangan 提交于
      Moving regulator node parsing to regulator driver in place
      of parsing it on mfd driver.
      The motivation for this change are:
      - MFD core driver should not depends on regulator and able
        to instantiate device without regulator.
      - The API for matching regulators are in regulator core and
        it is good that regulator driver only calls this API.
      - Regulator specific support should be in regulator driver only
        to ease any enhancement/modification for regulators.
      - The regulator driver is now registered as mfd sub device and
        all regulator registration is done from single probe call.
      Signed-off-by: NLaxman Dewangan <ldewangan@nvidia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      64e48160
  27. 14 11月, 2012 1 次提交
  28. 08 11月, 2012 2 次提交