1. 14 8月, 2008 1 次提交
  2. 23 7月, 2008 2 次提交
  3. 25 4月, 2008 8 次提交
  4. 25 3月, 2008 2 次提交
  5. 22 2月, 2008 1 次提交
  6. 02 2月, 2008 5 次提交
  7. 23 12月, 2007 1 次提交
  8. 18 12月, 2007 1 次提交
  9. 29 11月, 2007 1 次提交
  10. 26 10月, 2007 1 次提交
  11. 19 10月, 2007 1 次提交
    • J
      Add missing newlines to some uses of dev_<level> messages · 898eb71c
      Joe Perches 提交于
      Found these while looking at printk uses.
      
      Add missing newlines to dev_<level> uses
      Add missing KERN_<level> prefixes to multiline dev_<level>s
      Fixed a wierd->weird spelling typo
      Added a newline to a printk
      Signed-off-by: NJoe Perches <joe@perches.com>
      Cc: "Luck, Tony" <tony.luck@intel.com>
      Cc: Jens Axboe <jens.axboe@oracle.com>
      Cc: Mark M. Hoffman <mhoffman@lightlink.com>
      Cc: Roland Dreier <rolandd@cisco.com>
      Cc: Tilman Schmidt <tilman@imap.cc>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: Stephen Hemminger <shemminger@linux-foundation.org>
      Cc: Greg KH <greg@kroah.com>
      Cc: Jeremy Fitzhardinge <jeremy@goop.org>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Cc: David Brownell <david-b@pacbell.net>
      Cc: James Smart <James.Smart@Emulex.Com>
      Cc: Andrew Vasquez <andrew.vasquez@qlogic.com>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Cc: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
      Cc: Russell King <rmk@arm.linux.org.uk>
      Cc: Jaroslav Kysela <perex@suse.cz>
      Cc: Takashi Iwai <tiwai@suse.de>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      898eb71c
  12. 31 7月, 2007 1 次提交
  13. 20 7月, 2007 2 次提交
  14. 13 7月, 2007 3 次提交
    • G
      USB: sierra: cleanup the startup and shutdown path · 9e85c5f6
      Greg Kroah-Hartman 提交于
      This removes the ugly code that was copied from the keyspan driver and
      allocates the in urbs in a much shorter code path that can be understood
      easier.
      
      Also turned off the interrupt urb when no port was open as it's not nice
      to keep the bus busy for no good reason at all (this should be a power
      savings.)
      
      All in all, this saved over 40 lines of code and cleaned things up
      better.
      
      Cc: Kevin Lloyd <linux@sierrawireless.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      9e85c5f6
    • G
      USB: sierra: remove incorrect usage of the urb status field · 17c23274
      Greg Kroah-Hartman 提交于
      You can't rely on the fact that the status really is correct like it was.
      
      Also simplified the write path and now we allocate the urb and data on
      the fly, instead of trying to do that really odd timeout check which I
      am guessing doesn't really work properly.  This should speed up the
      device by keeping the hardware queue full easier.
      
      As a benefit, this reduces the size of the driver.
      
      Cc: Kevin Lloyd <linux@sierrawireless.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      17c23274
    • G
      USB: serial: sierra: clean up urb->status usage · 17dd2215
      Greg Kroah-Hartman 提交于
      This done in anticipation of removal of urb->status, which will make
      that patch easier to review and apply in the future.
      
      
      Cc: <linux-usb-devel@lists.sourceforge.net>
      Cc: Kevin Lloyd <linux@sierrawireless.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      17dd2215
  15. 23 5月, 2007 1 次提交
  16. 28 4月, 2007 2 次提交
  17. 08 2月, 2007 2 次提交
  18. 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
  19. 04 11月, 2006 2 次提交
  20. 18 10月, 2006 2 次提交