1. 02 11月, 2013 2 次提交
  2. 17 10月, 2013 1 次提交
  3. 12 10月, 2013 3 次提交
  4. 01 10月, 2013 1 次提交
  5. 18 9月, 2013 2 次提交
  6. 26 8月, 2013 1 次提交
  7. 24 8月, 2013 1 次提交
  8. 20 8月, 2013 2 次提交
  9. 19 8月, 2013 1 次提交
    • Y
      USB: serial: fix stringify operator in usb-serial-simple · 68c91d37
      Yann Droneaud 提交于
      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: NYann Droneaud <ydroneaud@opteya.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      68c91d37
  10. 15 8月, 2013 9 次提交
  11. 13 8月, 2013 11 次提交
  12. 01 8月, 2013 1 次提交
  13. 30 7月, 2013 2 次提交
  14. 29 7月, 2013 1 次提交
  15. 27 7月, 2013 2 次提交