1. 28 3月, 2012 8 次提交
  2. 12 1月, 2012 2 次提交
  3. 09 12月, 2011 2 次提交
  4. 08 12月, 2011 1 次提交
  5. 27 10月, 2011 4 次提交
  6. 21 7月, 2011 11 次提交
  7. 26 6月, 2011 2 次提交
  8. 01 6月, 2011 1 次提交
  9. 23 3月, 2011 1 次提交
  10. 02 3月, 2011 3 次提交
  11. 23 2月, 2011 1 次提交
  12. 24 12月, 2010 1 次提交
    • T
      mmc: update workqueue usages · 0d9ee5b2
      Tejun Heo 提交于
      Workqueue creation API has been updated and flush_scheduled_work() is
      deprecated and scheduled to be removed.
      
      * core/core.c: Use alloc_ordered_workqueue() instead of
        create_singlethread_workqueue().  This removes an unnecessary
        rescuer.
      
      * host/omap.c: Create, use and flush mmc_omap_wq instead of the
        system_wq.
      
      * Flush host->mmc_carddetect_work directly on removal instead of using
        flush_scheduled_work().
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: linux-mmc@vger.kernel.org
      0d9ee5b2
  13. 18 11月, 2010 1 次提交
  14. 29 10月, 2010 1 次提交
    • K
      mfd: Adding twl6030 mmc card detect support for MMC1 · 72f2e2c7
      kishore kadiyala 提交于
      Adding card detect callback function and card detect configuration
      function for MMC1 Controller on OMAP4.
      
      Card detect configuration function does initial configuration of the
      MMC Control & PullUp-PullDown registers of Phoenix.
      
      For MMC1 Controller, card detect interrupt source is
      twl6030 which is non-gpio. The card detect call back function provides
      card present/absent status by reading MMC Control register present
      on twl6030.
      
      Since OMAP4 doesn't use any GPIO line as used in OMAP3 for card detect,
      the suspend/resume initialization which was done in omap_hsmmc_gpio_init
      previously is moved to the probe thus making it generic for both OMAP3 &
      OMAP4.
      
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
      Cc: Adrian Hunter <adrian.hunter@nokia.com>
      Signed-off-by: NKishore Kadiyala <kishore.kadiyala@ti.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      72f2e2c7
  15. 23 10月, 2010 1 次提交
    • L
      mmc: Move regulator handling closer to core · 99fc5131
      Linus Walleij 提交于
      After discovering a problem in regulator reference counting I took Mark
      Brown's advice to move the reference count into the MMC core by making the
      regulator status a member of struct mmc_host.
      
      I took this opportunity to also implement NULL versions of
      the regulator functions so as to rid the driver code from
      some ugly #ifdef CONFIG_REGULATOR clauses.
      Signed-off-by: NLinus Walleij <linus.walleij@stericsson.com>
      Reviewed-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Liam Girdwood <lrg@slimlogic.co.uk>
      Cc: Tony Lindgren <tony@atomide.com>
      Cc: Adrian Hunter <adrian.hunter@nokia.com>
      Cc: Robert Jarzmik <robert.jarzmik@free.fr>
      Cc: Sundar Iyer <sundar.iyer@stericsson.com>
      Cc: Daniel Mack <daniel@caiaq.de>
      Cc: Pierre Ossman <pierre@ossman.eu>
      Cc: Matt Fleming <matt@console-pimps.org>
      Cc: David Brownell <dbrownell@users.sourceforge.net>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Cc: Eric Miao <eric.y.miao@gmail.com>
      Cc: Cliff Brake <cbrake@bec-systems.com>
      Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com>
      Cc: <linux-mmc@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      99fc5131