1. 07 Sep, 2016 5 commits
  2. 05 Sep, 2016 3 commits
  3. 27 Aug, 2016 6 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
    • Paul Gortmaker's avatar
      pinctrl: nomadik: make core support explicitly non-modular · 6d6cc0d8
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
      drivers/pinctrl/nomadik/Kconfig:config PINCTRL_NOMADIK
      drivers/pinctrl/nomadik/Kconfig:        bool "Nomadik pin controller driver"
      
      ...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: Alessandro Rubini <rubini@unipv.it>
      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>
      6d6cc0d8
    • Paul Gortmaker's avatar
      pinctrl: nomadik: make abx500 explicitly non-modular · 8b51fad0
      Paul Gortmaker authored
      The Kconfig currently controlling compilation of this code is:
      
       config PINCTRL_ABX500
             bool "ST-Ericsson ABx500 family Mixed Signal Circuit gpio functions"
      
      ...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_ALIAS 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: Linus Walleij <linus.walleij@linaro.org>
      Cc: Alessandro Rubini <rubini@unipv.it>
      Cc: Patrice Chotard <patrice.chotard@st.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>
      8b51fad0
    • Paul Gortmaker's avatar
      pinctrl: mediatek: make mtk-common explicitly non-modular · 4394a639
      Paul Gortmaker authored
      The Makefile currently controlling compilation of this code is:
      
        drivers/pinctrl/mediatek/pinctrl-mtk-common.o
          ---> drivers/pinctrl/mediatek/Makefile:obj-y += pinctrl-mtk-common.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.
      
      We don't replace module.h with init.h since the file doesn't need that.
      
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Hongzhou Yang <hongzhou.yang@mediatek.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>
      4394a639
  4. 24 Aug, 2016 1 commit
  5. 22 Aug, 2016 5 commits
  6. 19 Aug, 2016 3 commits
  7. 16 Aug, 2016 1 commit
  8. 11 Aug, 2016 4 commits
  9. 08 Aug, 2016 10 commits
  10. 07 Aug, 2016 2 commits
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.dk/linux-block · 857953d7
      Linus Torvalds authored
      Pull more block fixes from Jens Axboe:
       "As mentioned in the pull the other day, a few more fixes for this
        round, all related to the bio op changes in this series.
      
        Two fixes, and then a cleanup, renaming bio->bi_rw to bio->bi_opf.  I
        wanted to do that change right after or right before -rc1, so that
        risk of conflict was reduced.  I just rebased the series on top of
        current master, and no new ->bi_rw usage has snuck in"
      
      * 'for-linus' of git://git.kernel.dk/linux-block:
        block: rename bio bi_rw to bi_opf
        target: iblock_execute_sync_cache() should use bio_set_op_attrs()
        mm: make __swap_writepage() use bio_set_op_attrs()
        block/mm: make bdev_ops->rw_page() take a bool for read/write
      857953d7
    • Linus Torvalds's avatar
      Merge tag 'drm-for-v4.8-zpos' of git://people.freedesktop.org/~airlied/linux · 635a4ba1
      Linus Torvalds authored
      Pull drm zpos property support from Dave Airlie:
       "This tree was waiting on some media stuff I hadn't had time to get a
        stable branchpoint off, so I just waited until it was all in your tree
        first.
      
        It's been around a bit on the list and shouldn't affect anything
        outside adding the generic API and moving some ARM drivers to using
        it"
      
      * tag 'drm-for-v4.8-zpos' of git://people.freedesktop.org/~airlied/linux:
        drm: rcar: use generic code for managing zpos plane property
        drm/exynos: use generic code for managing zpos plane property
        drm: sti: use generic zpos for plane
        drm: add generic zpos property
      635a4ba1