1. 05 12月, 2016 1 次提交
  2. 29 11月, 2016 1 次提交
  3. 27 9月, 2016 1 次提交
  4. 25 7月, 2016 1 次提交
  5. 02 5月, 2016 2 次提交
  6. 29 2月, 2016 1 次提交
  7. 27 10月, 2015 1 次提交
    • C
      mmc: mmc: extend the mmc_send_tuning() · 9979dbe5
      Chaotian Jing 提交于
      The mmc_execute_tuning() has already prepared the opcode,
      there is no need to prepare it again at mmc_send_tuning(),
      and, there is a BUG of mmc_send_tuning() to determine the opcode
      by bus width, assume eMMC was running at HS200, 4bit mode,
      then the mmc_send_tuning() will overwrite the opcode from CMD21
      to CMD19, then got error.
      
      in addition, extend an argument of "cmd_error" to allow getting
      if there was cmd error when tune response.
      Signed-off-by: NChaotian Jing <chaotian.jing@mediatek.com>
      [Ulf: Rebased patch]
      Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
      9979dbe5
  8. 01 6月, 2015 1 次提交
  9. 23 3月, 2015 2 次提交
  10. 28 1月, 2015 1 次提交
  11. 19 1月, 2015 4 次提交
  12. 26 11月, 2014 1 次提交
  13. 13 5月, 2014 1 次提交
  14. 21 4月, 2014 1 次提交
  15. 09 11月, 2013 1 次提交
  16. 26 9月, 2013 5 次提交
  17. 25 8月, 2013 1 次提交
  18. 28 6月, 2013 1 次提交
  19. 13 4月, 2013 1 次提交
  20. 23 3月, 2013 2 次提交
  21. 12 3月, 2013 1 次提交
  22. 25 2月, 2013 1 次提交
  23. 08 11月, 2012 2 次提交
    • A
      mmc: dw_mmc: constify dw_mci_idmac_ops in exynos back-end · 8e2b36ea
      Arnd Bergmann 提交于
      The of_device_id match data is now marked as const and
      must not be modified. This changes the dw_mmc to mark
      all pointers passing the dw_mci_drv_data or dw_mci_dma_ops
      structures as const, and also marks the static definitions
      as const.
      
      drivers/mmc/host/dw_mmc-exynos.c: In function 'dw_mci_exynos_probe':
      drivers/mmc/host/dw_mmc-exynos.c:234:11: warning: assignment discards 'const' qualifier from pointer target type [enabled by default]
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Thomas Abraham <thomas.abraham@linaro.org>
      Cc: Will Newton <will.newton@imgtec.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      8e2b36ea
    • A
      mmc: dw_mmc: fix modular build for exynos back-end · 517cb9f1
      Arnd Bergmann 提交于
      The MODULE_DEVICE_TABLE entry for dw_mci_exynos_match
      was incorrectly copied from the platform back-end, which
      causes this error when building the driver as a loadable
      module:
      
      drivers/mmc/host/dw_mmc-exynos.c: At top level:
      drivers/mmc/host/dw_mmc-exynos.c:226:34: error: '__mod_of_device_table' aliased to undefined symbol 'dw_mci_pltfm_match'
      
      This patch fixes the problem by just using the correct
      string.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Thomas Abraham <thomas.abraham@linaro.org>
      Cc: Will Newton <will.newton@imgtec.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      517cb9f1
  24. 03 10月, 2012 1 次提交