1. 16 Feb, 2017 1 commit
  2. 07 Feb, 2017 6 commits
  3. 01 Feb, 2017 1 commit
  4. 31 Jan, 2017 5 commits
  5. 30 Jan, 2017 9 commits
  6. 29 Jan, 2017 1 commit
  7. 27 Jan, 2017 2 commits
    • Bhumika Goyal's avatar
      soc: dove: constify reset_control_ops structures · f2591b99
      Bhumika Goyal authored
      Declare reset_control_ops as const as they are only stored in the ops
      field of a reset_controller_dev structure. This field is of type const
      struct reset_control_ops *, so reset_control_ops structures having this
      property can be declared as const.
      Done using Coccinelle:
      
      @r1 disable optional_qualifier@
      identifier i;
      position p;
      @@
      static struct reset_control_ops i@p={...};
      
      @ok1@
      identifier r1.i;
      position p;
      struct reset_controller_dev x;
      @@
      x.ops=&i@p;
      
      @bad@
      position p!={r1.p,ok1.p};
      identifier r1.i;
      @@
      i@p
      
      @depends on !bad disable optional_qualifier@
      identifier r1.i;
      @@
      +const
      struct reset_control_ops i;
      
      File size before: drivers/soc/dove/pmu.o
         text	   data	    bss	    dec	    hex	filename
         2447	    112	     16	   2575	    a0f	drivers/soc/dove/pmu.o
      
      File size after: drivers/soc/dove/pmu.o
         text	   data	    bss	    dec	    hex	filename
         2479	     80	     16	   2575	    a0f	drivers/soc/dove/pmu.o
      Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
      Acked-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
      Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
      f2591b99
    • Arnd Bergmann's avatar
      ARM: mv78xx0: fix possible PCI buffer overflow · 5de267b2
      Arnd Bergmann authored
      gcc-7.0 reports a potential array overflow:
      
      arch/arm/mach-mv78xx0/pcie.c: In function 'mv78xx0_pcie_preinit':
      arch/arm/mach-mv78xx0/pcie.c:81:4: error: output may be truncated before the last format character [-Werror=format-truncation=]
      
      I haven't checked if this can actually happen, but making the
      array one 32-bit word longer addresses the warning and makes
      it completely safe.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
      5de267b2
  8. 26 Jan, 2017 1 commit
  9. 25 Jan, 2017 2 commits
  10. 24 Jan, 2017 2 commits
  11. 23 Jan, 2017 1 commit
  12. 20 Jan, 2017 3 commits
  13. 19 Jan, 2017 2 commits
  14. 18 Jan, 2017 3 commits
  15. 17 Jan, 2017 1 commit
    • Olof Johansson's avatar
      Merge tag 'samsung-soc-4.11' of... · d2d08aba
      Olof Johansson authored
      Merge tag 'samsung-soc-4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux into next/soc
      
      Samsung mach/soc update for v4.11. Mostly cleanups:
      1. Removal of unused platform data in S3C24XX and S3C64xx as follow up of
         conversion to new DMA channel request API.
      2. Adding const and __ro_after_init to various data in Samsung platforms.
      
      * tag 'samsung-soc-4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux:
        ARM: s3c64xx: Constify wake_irqs
        ARM: s3c24xx: Constify wake_irqs
        ARM: SAMSUNG: Constify array of wake irqs passed to samsung_sync_wakemask
        ARM: s3c64xx: Annotate external clock frequencies __ro_after_init
        ARM: s3c24xx: Constify few integer tables
        ARM: EXYNOS: Annotate iomem and pm_data pointers __ro_after_init
        ARM: EXYNOS: Constify list of retention registers
        ARM: s3c24xx: Drop unused struct s3c_audio_pdata entries
        ARM: s3c64xx: Drop initialization of unused struct s3c_audio_pdata fields
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      d2d08aba