1. 03 3月, 2010 2 次提交
  2. 24 12月, 2009 1 次提交
  3. 12 12月, 2009 1 次提交
  4. 20 9月, 2009 2 次提交
  5. 29 7月, 2009 1 次提交
    • R
      USB: aten uc2324 is really a moschip 7840 · 9d498bea
      Russell Lang 提交于
      I've opened up the case, and the chips in the ATEN UC2324 are:
      
      Moschip
      MCS7840CV-AA
      69507-6B1
      0650
      (USB to 4-port serial)
      
      (logo with AF kerned together)  0748  
      24BC02  
      SINGLP
      (unknown 8-pin chip)
      
      (logo looks like 3 or Z in circle)
      ZT3243LEEA    0752
      B7A16420.T
      (4 chips, so this will be RS232 line driver)
      (Probably equivalent of Sipex SP3243)
      
      So the ATEN 2324 (aten2011.c driver), is definitely the Moschip 7840,
      and should use the mos7840.c driver.  I expect you will remove the
      aten2011.c driver from the staging area.
      
      From the aten2011.c source code, the device ID for the UC2322 (2 port
      serial) is 0x7820, just like the Moschip evaluation board.  This value
      should be added to the device id table of mos7840.c.
      
      Here's a patch that adds these devices to the driver.
      
      
      From: Russell Lang <gsview@ghostgum.com.au>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      
      9d498bea
  6. 13 7月, 2009 1 次提交
  7. 16 6月, 2009 2 次提交
  8. 11 6月, 2009 1 次提交
  9. 24 4月, 2009 3 次提交
  10. 08 1月, 2009 1 次提交
  11. 03 1月, 2009 1 次提交
  12. 18 10月, 2008 2 次提交
  13. 14 10月, 2008 1 次提交
    • A
      tty: usb-serial krefs · 4a90f09b
      Alan Cox 提交于
      Use kref in the USB serial drivers so that we don't free tty structures
      from under the URB receive handlers as has historically been the case if
      you were unlucky. This also gives us a framework for general tty drivers to
      use tty_port objects and refcount.
      
      Contains two err->dev_err changes merged together to fix clashes in the
      -next tree.
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      4a90f09b
  14. 23 7月, 2008 2 次提交
  15. 03 5月, 2008 1 次提交
  16. 25 4月, 2008 4 次提交
  17. 05 3月, 2008 1 次提交
  18. 02 2月, 2008 1 次提交
  19. 29 11月, 2007 1 次提交
  20. 26 10月, 2007 1 次提交
  21. 20 7月, 2007 1 次提交
  22. 13 7月, 2007 2 次提交
  23. 23 5月, 2007 1 次提交
  24. 28 4月, 2007 1 次提交
    • O
      USB: overhaul of mos7840 driver · 0de9a702
      Oliver Neukum 提交于
      This fixes:
      
      - breaking DMA rules about buffers
      - usage of _global_ variables to save a single device's attributes
      - racy access to urb->status
      - smp monotonity issue with statistics
      - use of one buffer for many simultaneous URBs
      - error handling introduced
      - several instances of following NULL pointers
      - use after free
      - unnecessary GFP_ATOMIC
      - GFP_KERNEL in interrupt
      - various cleanups
      - write room granularity issue that bit cdc-acm
      - race in shutdown
      Signed-off-by: NOliver Neukum <oneukum@suse.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      0de9a702
  25. 12 2月, 2007 1 次提交
  26. 08 2月, 2007 1 次提交
  27. 21 12月, 2006 1 次提交
  28. 09 12月, 2006 1 次提交
    • A
      [PATCH] tty: switch to ktermios · 606d099c
      Alan Cox 提交于
      This is the grungy swap all the occurrences in the right places patch that
      goes with the updates.  At this point we have the same functionality as
      before (except that sgttyb() returns speeds not zero) and are ready to
      begin turning new stuff on providing nobody reports lots of bugs
      
      If you are a tty driver author converting an out of tree driver the only
      impact should be termios->ktermios name changes for the speed/property
      setting functions from your upper layers.
      
      If you are implementing your own TCGETS function before then your driver
      was broken already and its about to get a whole lot more painful for you so
      please fix it 8)
      
      Also fill in c_ispeed/ospeed on init for most devices, although the current
      code will do this for you anyway but I'd like eventually to lose that extra
      paranoia
      
      [akpm@osdl.org: bluetooth fix]
      [mp3@de.ibm.com: sclp fix]
      [mp3@de.ibm.com: warning fix for tty3270]
      [hugh@veritas.com: fix tty_ioctl powerpc build]
      [jdike@addtoit.com: uml: fix ->set_termios declaration]
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NMartin Peschke <mp3@de.ibm.com>
      Acked-by: NPeter Oberparleiter <oberpar@de.ibm.com>
      Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
      Signed-off-by: NHugh Dickins <hugh@veritas.com>
      Signed-off-by: NJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      606d099c
  29. 08 12月, 2006 1 次提交