1. 15 11月, 2011 1 次提交
  2. 24 10月, 2011 1 次提交
    • A
      mfd: remove CONFIG_MFD_SUPPORT · 8a0a8e8e
      Arnd Bergmann 提交于
      We currently have two symbols to control compilation the MFD subsystem,
      MFD_SUPPORT and MFD_CORE. The MFD_SUPPORT is actually not required
      at all, it only hides the submenu when not set, with the effect that
      Kconfig warns about missing dependencies when another driver selects
      an MFD driver while MFD_SUPPORT is disabled. Turning the MFD submenu
      back from menuconfig into a plain menu simplifies the Kconfig syntax
      for those kinds of users and avoids the surprise when the menu
      suddenly appears because another driver was enabled that selects this
      symbol.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      8a0a8e8e
  3. 06 10月, 2011 2 次提交
  4. 23 9月, 2011 1 次提交
  5. 21 9月, 2011 4 次提交
  6. 08 9月, 2011 1 次提交
  7. 01 8月, 2011 3 次提交
  8. 16 7月, 2011 1 次提交
    • P
      mcp23s08: add i2c support · 752ad5e8
      Peter Korsgaard 提交于
      Add i2c bindings for the mcp230xx devices. This is quite a lot simpler
      than the spi one as there's no funky sub addressing done (one struct
      i2c_client per struct gpio_chip).
      
      The mcp23s08_platform_data structure is reused for i2c, even though
      only a single mcp23s08_chip_info structure is needed.
      
      To use, simply fill out a platform_data structure and pass it in
      i2c_board_info, E.G.:
      
      static const struct mcp23s08_platform_data mcp23017_data = {
      	.chip[0] = {
      		.pullups = 0x00ff,
      	},
      	.base = 240,
      };
      
      static struct i2c_board_info __initdata i2c_devs[] = {
      	{ I2C_BOARD_INFO("mcp23017", 0x20),
      	  .platform_data = &smartview_mcp23017_data, },
      	...
      };
      Signed-off-by: NPeter Korsgaard <jacmet@sunsite.dk>
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      752ad5e8
  9. 07 7月, 2011 2 次提交
  10. 09 6月, 2011 1 次提交
  11. 08 6月, 2011 1 次提交
  12. 07 6月, 2011 7 次提交
  13. 06 6月, 2011 1 次提交
  14. 04 6月, 2011 1 次提交
  15. 30 5月, 2011 2 次提交
  16. 28 5月, 2011 1 次提交
  17. 27 5月, 2011 6 次提交
  18. 20 5月, 2011 3 次提交
  19. 29 3月, 2011 1 次提交