1. 27 Aug, 2013 23 commits
  2. 25 Aug, 2013 3 commits
  3. 23 Aug, 2013 5 commits
  4. 20 Aug, 2013 4 commits
  5. 19 Aug, 2013 2 commits
    • Greg Kroah-Hartman's avatar
      Merge tag 'for-usb-2013-08-15-step-2' of... · 4c4e1596
      Greg Kroah-Hartman authored
      Merge tag 'for-usb-2013-08-15-step-2' of ra.kernel.org:/pub/scm/linux/kernel/git/sarah/xhci into work-next
      
      Sarah writes:
      
      xhci: Step 2 to fix usb-linus and usb-next.
      
      Hi Greg,
      
      This is the first of two steps to fix your usb-linus and usb-next trees.
      As I mentioned, commit 4fae6f0f "USB:
      handle LPM errors during device suspend correctly" was incorrectly added
      to usb-next when it should have been added to usb-linus and marked for
      stable.
      
      Two port power off bug fixes touch the same code that patch touches, but
      it's not easy to simply move commit 4fae6f0f patch to usb-linus because
      commit 28e86165 "USB: refactor code for
      enabling/disabling remote wakeup" also touched those code sections.
      
      I propose a two step process to fix this:
      
      1. Pull these four patches into usb-linus.
      
      2. Revert commit 28e86165 from usb-next.
         Merge usb-linus into usb-next, and resolve the conflicts.
      
      I will be sending pull requests for these steps.
      
      This pull request is step two.
      
      Sarah Sharp
      4c4e1596
    • Greg Kroah-Hartman's avatar
      Merge 3.11-rc6 into usb-next · bd479f29
      Greg Kroah-Hartman authored
      We want these USB fixes in this branch as well.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      bd479f29
  6. 18 Aug, 2013 3 commits
    • Linus Torvalds's avatar
      Linux 3.11-rc6 · b36f4be3
      Linus Torvalds authored
      b36f4be3
    • Yann Droneaud's avatar
      USB: serial: fix stringify operator in usb-serial-simple · 68c91d37
      Yann Droneaud authored
      usb-serial-simple uses an unknown stringify macro that make
      all drivers being named "stringify(vendor)".
      
      This can be a problem when two drivers have the same (wrong) name:
      
          kernel: usbcore: registered new interface driver usb_serial_simple
          kernel: usbserial: USB Serial support registered for stringify(vendor)
          kernel Error: Driver 'stringify(vendor)' is already registered, aborting...
          kernel: usbserial: problem -16 when registering driver stringify(vendor)
          kernel: usbserial: USB Serial deregistering driver stringify(vendor)
          kernel: usbcore: deregistering interface driver usb_serial_simple
      
      Before the fix:
      
          $ strings drivers/usb/serial/usb-serial-simple.o
          usb_serial_simple
          stringify(vendor)
      
      After the fix:
      
          $ strings drivers/usb/serial/usb-serial-simple.o
          usb_serial_simple
          funsoft
          flashloader
          vivopay
          moto_modem
          hp4x
          suunto
          siemens_mpi
      
      This patch makes usb-serial-simple use the correct stringify operator.
      Signed-off-by: default avatarYann Droneaud <ydroneaud@opteya.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      68c91d37
    • Linus Torvalds's avatar
      Merge branch 'for-3.11-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup · 50e37cce
      Linus Torvalds authored
      Pull cgroup fix from Tejun Heo:
       "This contains one patch to fix the return value of cpuset's cgroups
        interface function, which used to always return -ENODEV for the writes
        on the 'memory_pressure_enabled' file"
      
      * 'for-3.11-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
        cpuset: fix the return value of cpuset_write_u64()
      50e37cce