1. 15 Sep, 2016 2 commits
    • Arnd Bergmann's avatar
      pinctrl: stm32: add IRQ_DOMAIN_HIERARCHY dependency · 49cf2f29
      Arnd Bergmann authored
      The newly added irqchip support for the stm32 pinctrl driver uses
      hierarchical IRQ domains as provided by the NVIC primary irqchip.
      This works great for any configuration that may be relevant on
      stm32, but when doing compile-testing (randconfig), we can
      enable it without NVIC or any other primary irqchip that
      enables IRQ_DOMAIN_HIERARCHY:
      
      drivers/pinctrl/stm32/pinctrl-stm32.c:212:13: error: 'irq_chip_eoi_parent' undeclared here (not in a function)
      drivers/pinctrl/stm32/pinctrl-stm32.c:213:20: error: 'irq_chip_mask_parent' undeclared here (not in a function)
      drivers/pinctrl/stm32/pinctrl-stm32.c:214:20: error: 'irq_chip_unmask_parent' undeclared here (not in a function)
      drivers/pinctrl/stm32/pinctrl-stm32.c:215:20: error: 'irq_chip_set_type_parent' undeclared here (not in a function)
      
      This adds a Kconfig dependency to limit compile-testing to
      configurations that have IRQ_DOMAIN_HIERARCHY already enabled.
      It's not obvious whether we should use 'depends on' or 'select'
      here, I think either one works, with 'depends on' being more
      intuitive, while 'select' would be less likely to cause dependency
      loops.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Fixes: 0eb9f683 ("pinctrl: Add IRQ support to STM32 gpios")
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      49cf2f29
    • Jerome Brunet's avatar
      pinctrl: amlogic: gxbb: add spi nor pins · 6812f19e
      Jerome Brunet authored
      Add EE domains pins for the SPI flash controller
      Acked-by: default avatarKevin Hilman <khilman@baylibre.com>
      Signed-off-by: default avatarJerome Brunet <jbrunet@baylibre.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      6812f19e
  2. 14 Sep, 2016 4 commits
  3. 13 Sep, 2016 9 commits
  4. 12 Sep, 2016 8 commits
  5. 07 Sep, 2016 11 commits
  6. 05 Sep, 2016 3 commits
  7. 27 Aug, 2016 3 commits
    • Paul Gortmaker's avatar
      pinctrl: sirf: make core support explicitly non-modular · a9784e56
      Paul Gortmaker authored
      The Makefile currently controlling compilation of this code is:
      
        drivers/pinctrl/sirf/pinctrl-sirf.o
            --> drivers/pinctrl/sirf/Makefile:obj-y += pinctrl-sirf.o
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the couple traces of modular infrastructure use, so that
      when reading the driver there is no doubt it is builtin-only.
      
      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: Linus Walleij <linus.walleij@linaro.org>
      Cc: Rongjun Ying <rongjun.ying@csr.com>
      Cc: Yuping Luo <yuping.luo@csr.com>
      Cc: Barry Song <baohua@kernel.org>
      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>
      a9784e56
    • Paul Gortmaker's avatar
      pinctrl: sirf: make atlas7 explicitly non-modular · 37e70b6a
      Paul Gortmaker authored
      The Makefile currently controlling compilation of this code is:
      
        drivers/pinctrl/sirf/pinctrl-atlas7.o
          ---> drivers/pinctrl/sirf/Makefile:obj-y += pinctrl-atlas7.o
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the couple traces of modular infrastructure use, so that
      when reading the driver there is no doubt it is builtin-only.
      
      We delete the MODULE_LICENSE tag etc. since all that information
      is already contained at the top of the file in the comments.
      
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Barry Song <baohua@kernel.org>
      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>
      37e70b6a
    • Paul Gortmaker's avatar
      pinctrl: rockchip: make it explicitly non-modular · 2f436204
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
      drivers/pinctrl/Kconfig:config PINCTRL_ROCKCHIP
      drivers/pinctrl/Kconfig:        bool
      
      ...meaning that it currently is not being built as a module by anyone.
      
      Lets remove the couple traces of modular infrastructure use, so that
      when reading the driver there is no doubt it is builtin-only.
      
      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: Linus Walleij <linus.walleij@linaro.org>
      Cc: Heiko Stuebner <heiko@sntech.de>
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-rockchip@lists.infradead.org
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      2f436204