1. 10 8月, 2017 1 次提交
  2. 01 8月, 2017 1 次提交
  3. 15 5月, 2017 2 次提交
    • T
      gpio: Move OMAP_GPIO to Kconfig · 29cb2b3b
      Tom Rini 提交于
      This driver is used often enough such that we want to have this enabled
      by default on any ARCH_OMAP2PLUS board, and this only compiles on
      ARCH_OMAP2PLUS due to required defines, so mark that as the depends.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      29cb2b3b
    • T
      TI: Drop 'CONFIG_OMAP' · 89024ddc
      Tom Rini 提交于
      In the two cases in the code where we use CONFIG_OMAP as a useful test
      currently we can make use of CONFIG_ARCH_OMAP2PLUS instead.  With that
      changed we can drop all defines of CONFIG_OMAP.  While in here,
      CONFIG_OMAP3430 is only defined and then never used, so drop.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      89024ddc
  4. 11 1月, 2017 1 次提交
    • M
      mmc: move more driver config options to Kconfig · 1d2c0506
      Masahiro Yamada 提交于
      Move (and rename) the following CONFIG options to Kconfig:
      
        CONFIG_DAVINCI_MMC  (renamed to CONFIG_MMC_DAVINCI)
        CONFIG_OMAP_HSMMC   (renamed to CONFIG_MMC_OMAP_HS)
        CONFIG_MXC_MMC      (renamed to CONFIG_MMC_MXC)
        CONFIG_MXS_MMC      (renamed to CONFIG_MMC_MXS)
        CONFIG_TEGRA_MMC    (renamed to CONFIG_MMC_SDHCI_TEGRA)
        CONFIG_SUNXI_MMC    (renamed to CONFIG_MMC_SUNXI)
      
      They are the same option names as used in Linux.
      
      This commit was created as follows:
      
      [1] Rename the options with the following command:
      
      find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
      -type f -print | xargs sed -i -e '
      s/CONFIG_DAVINCI_MMC/CONFIG_MMC_DAVINCI/g
      s/CONFIG_OMAP_HSMMC/CONFIG_MMC_OMAP_HS/g
      s/CONFIG_MXC_MMC/CONFIG_MMC_MXC/g
      s/CONFIG_MXS_MMC/CONFIG_MMC_MXS/g
      s/CONFIG_TEGRA_MMC/CONFIG_MMC_SDHCI_TEGRA/g
      s/CONFIG_SUNXI_MMC/CONFIG_MMC_SUNXI/g
      '
      
      [2] Commit the changes
      
      [3] Create entries in driver/mmc/Kconfig.
          (copied from Linux)
      
      [4] Move the options with the following command
      tools/moveconfig.py -y -r HEAD \
      MMC_DAVINCI MMC_OMAP_HS MMC_MXC MMC_MXS MMC_SDHCI_TEGRA MMC_SUNXI
      
      [5] Sort and align drivers/mmc/Makefile for readability
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: NMarek Vasut <marex@denx.de>
      1d2c0506
  5. 22 11月, 2016 1 次提交
  6. 28 7月, 2015 1 次提交