1. 11 12月, 2012 3 次提交
  2. 06 12月, 2012 1 次提交
  3. 21 11月, 2012 1 次提交
  4. 30 10月, 2012 1 次提交
  5. 26 10月, 2012 1 次提交
  6. 17 10月, 2012 2 次提交
    • D
      regmap: select REGMAP if REGMAP_MMIO and REGMAP_IRQ enabled · 5784ee4d
      Dong Aisheng 提交于
      The regmap_mmio and regmap_irq depend on regmap core, if not select,
      we may not compile regmap core and meet compiling errors as follows
      if REGMAP_MMIO is selected by client drivers:
      drivers/mfd/syscon.c:94:15: error: variable 'syscon_regmap_config' has initializer but incomplete type
      drivers/mfd/syscon.c:95:2: error: unknown field 'reg_bits' specified in initializer
      drivers/mfd/syscon.c:95:2: warning: excess elements in struct initializer [enabled by default]
      drivers/mfd/syscon.c:95:2: warning: (near initialization for 'syscon_regmap_config') [enabled by default]
      drivers/mfd/syscon.c:96:2: error: unknown field 'val_bits' specified in initializer
      drivers/mfd/syscon.c:96:2: warning: excess elements in struct initializer [enabled by default]
      drivers/mfd/syscon.c:96:2: warning: (near initialization for 'syscon_regmap_config') [enabled by default]
      drivers/mfd/syscon.c:97:2: error: unknown field 'reg_stride' specified in initializer
      drivers/mfd/syscon.c:97:2: warning: excess elements in struct initializer [enabled by default]
      drivers/mfd/syscon.c:97:2: warning: (near initialization for 'syscon_regmap_config') [enabled by default]
      drivers/mfd/syscon.c: In function 'syscon_probe':
      drivers/mfd/syscon.c:124:2: error: invalid use of undefined type 'struct regmap_config'
      drivers/mfd/syscon.c:125:2: error: implicit declaration of function 'devm_regmap_init_mmio' [-Werror=implicit-function-declaration]
      drivers/mfd/syscon.c:125:17: warning: assignment makes pointer from integer without a cast [enabled by default]
      cc1: some warnings being treated as errors
      
      drivers/mfd/Kconfig:
      config MFD_SYSCON
              bool "System Controller Register R/W Based on Regmap"
      	depends on OF
      	select REGMAP_MMIO
      	help
      	  Select this option to enable accessing system control registers
      	    via regmap.
      Signed-off-by: NDong Aisheng <dong.aisheng@linaro.org>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      5784ee4d
    • D
      regmap: make lock/unlock functions customizable · 0d4529c5
      Davide Ciminaghi 提交于
      It is sometimes convenient for a regmap user to override the standard
      regmap lock/unlock functions with custom functions.
      For instance this can be useful in case an already existing spinlock
      or mutex has to be used for locking a set of registers instead of the
      internal regmap spinlock/mutex.
      Note that the fast_io field of struct regmap_bus is ignored in case
      custom locking functions are used.
      Signed-off-by: NDavide Ciminaghi <ciminaghi@gnudd.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      0d4529c5
  7. 15 10月, 2012 10 次提交
  8. 09 9月, 2012 1 次提交
  9. 31 8月, 2012 1 次提交
  10. 08 8月, 2012 1 次提交
  11. 04 8月, 2012 7 次提交
  12. 19 7月, 2012 1 次提交
  13. 06 7月, 2012 1 次提交
  14. 19 6月, 2012 1 次提交
  15. 18 6月, 2012 2 次提交
  16. 14 6月, 2012 1 次提交
  17. 08 6月, 2012 1 次提交
  18. 05 6月, 2012 2 次提交
  19. 03 6月, 2012 2 次提交