1. 07 Feb, 2017 5 commits
  2. 01 Feb, 2017 1 commit
  3. 30 Jan, 2017 9 commits
  4. 29 Jan, 2017 1 commit
  5. 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
  6. 26 Jan, 2017 1 commit
  7. 25 Jan, 2017 2 commits
  8. 24 Jan, 2017 2 commits
  9. 20 Jan, 2017 3 commits
  10. 19 Jan, 2017 2 commits
  11. 18 Jan, 2017 3 commits
  12. 17 Jan, 2017 2 commits
  13. 12 Jan, 2017 2 commits
  14. 11 Jan, 2017 1 commit
  15. 10 Jan, 2017 2 commits
  16. 08 Jan, 2017 2 commits
    • Linus Torvalds's avatar
      Linux 4.10-rc3 · a121103c
      Linus Torvalds authored
      a121103c
    • Linus Torvalds's avatar
      Merge tag 'usb-4.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · 83280e90
      Linus Torvalds authored
      Pull USB fixes from Greg KH:
       "Here are a bunch of USB fixes for 4.10-rc3. Yeah, it's a lot, an
        artifact of the holiday break I think.
      
        Lots of gadget and the usual XHCI fixups for reported issues (one day
        that driver will calm down...) Also included are a bunch of usb-serial
        driver fixes, and for good measure, a number of much-reported MUSB
        driver issues have finally been resolved.
      
        All of these have been in linux-next with no reported issues"
      
      * tag 'usb-4.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (72 commits)
        USB: fix problems with duplicate endpoint addresses
        usb: ohci-at91: use descriptor-based gpio APIs correctly
        usb: storage: unusual_uas: Add JMicron JMS56x to unusual device
        usb: hub: Move hub_port_disable() to fix warning if PM is disabled
        usb: musb: blackfin: add bfin_fifo_offset in bfin_ops
        usb: musb: fix compilation warning on unused function
        usb: musb: Fix trying to free already-free IRQ 4
        usb: musb: dsps: implement clear_ep_rxintr() callback
        usb: musb: core: add clear_ep_rxintr() to musb_platform_ops
        USB: serial: ti_usb_3410_5052: fix NULL-deref at open
        USB: serial: spcp8x5: fix NULL-deref at open
        USB: serial: quatech2: fix sleep-while-atomic in close
        USB: serial: pl2303: fix NULL-deref at open
        USB: serial: oti6858: fix NULL-deref at open
        USB: serial: omninet: fix NULL-derefs at open and disconnect
        USB: serial: mos7840: fix misleading interrupt-URB comment
        USB: serial: mos7840: remove unused write URB
        USB: serial: mos7840: fix NULL-deref at open
        USB: serial: mos7720: remove obsolete port initialisation
        USB: serial: mos7720: fix parallel probe
        ...
      83280e90