1. 09 Mar, 2016 8 commits
    • Masahiro Yamada's avatar
      pinctrl: uniphier: rename CONFIG options and file names · 1233a1fb
      Masahiro Yamada authored
      The current "CONFIG_PINCTRL_UNIPHIER_PH1_*" is too long.  It would
      not hurt to drop "PH1_" because "UNIPHIER_" already well specifies
      the SoC family.  Also, rename files for consistency.
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      1233a1fb
    • Paul Gortmaker's avatar
      pinctrl: sunxi: make A80 explicitly non-modular · 5ab260aa
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
      drivers/pinctrl/sunxi/Kconfig:config PINCTRL_SUN9I_A80_R
      drivers/pinctrl/sunxi/Kconfig:  def_bool MACH_SUN9I
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the modular code that is essentially orphaned, so that
      when reading the driver there is no doubt it is builtin-only.
      
      Since module_platform_driver() uses the same init level priority as
      builtin_platform_driver() the init ordering remains unchanged with
      this commit.
      
      Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
      
      We also delete the MODULE_LICENSE tag etc. since all that information
      is already contained at the top of the file in the comments.
      
      Cc: Chen-Yu Tsai <wens@csie.org>
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      5ab260aa
    • Paul Gortmaker's avatar
      pinctrl: stm32: make explicitly non-modular · b5576e08
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
      drivers/pinctrl/stm32/Kconfig:config PINCTRL_STM32F429
      drivers/pinctrl/stm32/Kconfig:  bool "STMicroelectronics STM32F429 pin control" if COMPILE_TEST && !MACH_STM32F429
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the modular code that is essentially orphaned, so that
      when reading the driver there is no doubt it is builtin-only.
      
      Since module_init translates to device_initcall in the non-modular
      case, the init ordering remains unchanged with this commit.
      
      Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
      
      We also delete the MODULE_LICENSE tag etc. since all that information
      is already contained at the top of the file in the comments.
      
      Cc: Patrice Chotard <patrice.chotard@st.com>
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: default avatarMaxime Coquelin <mcoquelin.stm32@gmail.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      b5576e08
    • Paul Gortmaker's avatar
      pinctrl: sh-pfc: make explicitly non-modular · a43647b6
      Paul Gortmaker authored
      The Kconfig / Makefile currently controlling compilation of this code is:
      
      drivers/pinctrl/sh-pfc/Makefile:obj-$(CONFIG_PINCTRL_SH_PFC)    += sh-pfc.o
      drivers/pinctrl/sh-pfc/Makefile:sh-pfc-objs                     = core.o pinctrl.o
      
      drivers/pinctrl/sh-pfc/Kconfig:config PINCTRL_SH_PFC
      drivers/pinctrl/sh-pfc/Kconfig: def_bool y
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the modular code that is essentially orphaned, so that
      when reading the driver there is no doubt it is builtin-only.
      
      Since module_init already wasn't being used in this code, the init
      ordering remains unchanged with this commit.
      
      Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
      
      We also delete the MODULE_LICENSE tag etc. since all that information
      was (or is now) contained at the top of the file in the comments.
      
      Cc: linux-renesas-soc@vger.kernel.org
      Cc: linux-gpio@vger.kernel.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      Acked-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      a43647b6
    • Paul Gortmaker's avatar
      pinctrl: meson: make explicitly non-modular · 2496eb32
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
      drivers/pinctrl/Kconfig:config PINCTRL_MESON
      drivers/pinctrl/Kconfig:        bool
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the couple traces of modularity so that when reading the
      driver there is no doubt it is builtin-only.
      
      Since module_platform_driver() uses the same init level priority as
      builtin_platform_driver() the init ordering remains unchanged with
      this commit.
      
      We don't replace module.h with init.h since the file already has that.
      
      Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
      
      We also delete the MODULE_LICENSE tag etc. since all that information
      is already contained at the top of the file in the comments.
      
      Cc: Beniamino Galvani <b.galvani@gmail.com>
      Cc: Carlo Caione <carlo@endlessm.com>
      Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
      Cc: Antoine Tenart <antoine.tenart@free-electrons.com>
      Cc: linux-gpio@vger.kernel.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      2496eb32
    • Paul Gortmaker's avatar
      pinctrl: pinctrl-mt6397 driver explicitly non-modular · d4bc6b92
      Paul Gortmaker authored
      The Kconfig for this driver is currently:
      
      config PINCTRL_MT6397
              bool "Mediatek MT6397 pin control" if COMPILE_TEST && !MFD_MT6397
      
      ...meaning that it is currently not being built as a module by anyone.
      Lets remove the modular code that is essentially orphaned, so that
      when reading the driver there is no doubt it is builtin-only.
      
      Since module_init translates to device_initcall in the non-modular
      case, the init ordering remains unchanged with this commit.
      
      We also delete the MODULE_LICENSE tag etc. since all that information
      is already contained at the top of the file in the comments.
      
      Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
      
      Cc: Matthias Brugger <matthias.bgg@gmail.com>
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-mediatek@lists.infradead.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: default avatarHongzhou Yang <hongzhou.yang@mediatek.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      d4bc6b92
    • Paul Gortmaker's avatar
      pinctrl: sunxi: does not need module.h · bcc76199
      Paul Gortmaker authored
      This file is not modular, nor is it using modular functions. The
      only thing close is the global THIS_MODULE which comes from export.h
      so lets replace it appropriately and cut back on the amount of
      header stuff we draw in by several thousand lines.
      
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      bcc76199
    • Linus Walleij's avatar
      pinctrl: pxa2xx: export symbols · cc2a73a4
      Linus Walleij authored
      The pxa2xxx fails some automated builds because of unexported
      symbols.
      Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      cc2a73a4
  2. 08 Mar, 2016 4 commits
  3. 07 Mar, 2016 4 commits
  4. 03 Mar, 2016 1 commit
  5. 26 Feb, 2016 4 commits
  6. 25 Feb, 2016 2 commits
  7. 19 Feb, 2016 3 commits
  8. 18 Feb, 2016 8 commits
  9. 17 Feb, 2016 1 commit
  10. 16 Feb, 2016 1 commit
  11. 15 Feb, 2016 4 commits