Skip to content
Snippets Groups Projects
  1. Nov 09, 2005
    • Olaf Hering's avatar
      [PATCH] changing CONFIG_LOCALVERSION rebuilds too much, for no good reason · 733482e4
      Olaf Hering authored
      
      This patch removes almost all inclusions of linux/version.h.  The 3
      #defines are unused in most of the touched files.
      
      A few drivers use the simple KERNEL_VERSION(a,b,c) macro, which is
      unfortunatly in linux/version.h.
      
      There are also lots of #ifdef for long obsolete kernels, this was not
      touched.  In a few places, the linux/version.h include was move to where
      the LINUX_VERSION_CODE was used.
      
      quilt vi `find * -type f -name "*.[ch]"|xargs grep -El '(UTS_RELEASE|LINUX_VERSION_CODE|KERNEL_VERSION|linux/version.h)'|grep -Ev '(/(boot|coda|drm)/|~$)'`
      
      search pattern:
      /UTS_RELEASE\|LINUX_VERSION_CODE\|KERNEL_VERSION\|linux\/\(utsname\|version\).h
      
      Signed-off-by: default avatarOlaf Hering <olh@suse.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      733482e4
  2. Oct 30, 2005
  3. Oct 29, 2005
    • Al Viro's avatar
      [PATCH] idmouse cleanup and overflow fix · 018a2cdf
      Al Viro authored
      
      switched to simple_read_from_buffer(), killed broken use of min().
      Incidentally, that use of min() had been fixed once, only to be
      reintroduced in commit 4244f724:
      
          [PATCH] USB: upgrade of the idmouse driver
      
      [snip]
      -       if (count > IMGSIZE - *ppos)
      -               count = IMGSIZE - *ppos;
      +       count = min ((loff_t)count, IMGSIZE - (*ppos));
      
      Note the lovely use of cast to shut the warning about misuse of min()
      up...
      
      Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      018a2cdf
  4. Oct 28, 2005
    • Alan Stern's avatar
      [PATCH] Missing transfer_flags setting in usbtest · 3e8a556a
      Alan Stern authored
      
      This patch (as582) adds a missing transfer_flags setting to the usbtest
      driver.
      
      Signed-off-by: default avatarAlan Stern <stern@rowland.harvard.edu>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      3e8a556a
    • Andrew Morton's avatar
      [PATCH] USB: sisusb warning fix · dabb5928
      Andrew Morton authored
      
      drivers/usb/misc/sisusbvga/sisusb.c: In function `sisusb_reset_text_mode':
      drivers/usb/misc/sisusbvga/sisusb.c:2461: warning: assignment discards qualifiers from pointer target type
      
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      
       drivers/usb/misc/sisusbvga/sisusb.c |    2 +-
       1 file changed, 1 insertion(+), 1 deletion(-)
      dabb5928
    • David Brownell's avatar
      [PATCH] usb_interface power state · db690874
      David Brownell authored
      
      This updates the handling of power state for USB interfaces.
      
        - Formalizes an existing invariant:  interface "power state" is a boolean:
          ON when I/O is allowed, and FREEZE otherwise.  It does so by defining
          some inlined helpers, then using them.
      
        - Adds a useful invariant:  the only interfaces marked active are those
          bound to non-suspended drivers.  Later patches build on this invariant.
      
        - Simplifies the interface driver API (and removes some error paths) by
          removing the requirement that they record power state changes during
          suspend and resume callbacks.  Now usbcore does that.
      
      A few drivers were simplified to address that last change.
      
      Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      
       drivers/usb/core/hub.c       |   33 +++++++++------------
       drivers/usb/core/message.c   |    1
       drivers/usb/core/usb.c       |   65 +++++++++++++++++++++++++++++++++----------
       drivers/usb/core/usb.h       |   18 +++++++++++
       drivers/usb/input/hid-core.c |    2 -
       drivers/usb/misc/usbtest.c   |   10 ------
       drivers/usb/net/pegasus.c    |    2 -
       drivers/usb/net/usbnet.c     |    2 -
       8 files changed, 85 insertions(+), 48 deletions(-)
      db690874
    • Greg Kroah-Hartman's avatar
      [PATCH] devfs: Remove the mode field from usb_class_driver as it's no longer needed · d6e5bcf4
      Greg Kroah-Hartman authored
      
      Also fixes all drivers that set this field, and removes some other devfs
      specfic USB logic.
      
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      
       drivers/usb/class/usblp.c           |    3 +--
       drivers/usb/core/file.c             |   19 ++++---------------
       drivers/usb/image/mdc800.c          |    3 +--
       drivers/usb/input/aiptek.c          |    2 +-
       drivers/usb/input/hiddev.c          |    3 +--
       drivers/usb/media/dabusb.c          |    3 +--
       drivers/usb/misc/auerswald.c        |    3 +--
       drivers/usb/misc/idmouse.c          |    5 ++---
       drivers/usb/misc/legousbtower.c     |    5 ++---
       drivers/usb/misc/rio500.c           |    3 +--
       drivers/usb/misc/sisusbvga/sisusb.c |    5 -----
       drivers/usb/misc/usblcd.c           |    9 ++++-----
       drivers/usb/usb-skeleton.c          |    3 +--
       include/linux/usb.h                 |    7 ++-----
       14 files changed, 22 insertions(+), 51 deletions(-)
      d6e5bcf4
    • Al Viro's avatar
      [PATCH] gfp_t: drivers/usb · 55016f10
      Al Viro authored
      
      Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      55016f10
  5. Sep 12, 2005
    • Thomas Sailer's avatar
      [PATCH] usb: fix uss720 schedule with interrupts off · 0f36163d
      Thomas Sailer authored
      
      This patch fixes the long standing schedule with interrupts off problem
      of the uss720 driver. The problem is caused by the parport layer calling
      the save and restore methods within a write_lock_irqsave guarded region.
      The fix is to issue the control transaction requests required by save
      and restore asynchronously.
      
      Signed-off-by: default avatarThomas Sailer, <sailer@ife.ee.ethz.ch>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      0f36163d
    • Thomas Winischhofer's avatar
      [PATCH] USB: sisusb[vga] update · 1bbb4f20
      Thomas Winischhofer authored
      
      here is a new and extended version of the sisusbvga (previously: sisusb)
      driver. The patch is against 2.6.13 and updates the driver to version 0.0.8.
      
      Additions include complete VGA/EGA text console support and a build-in
      display mode infrastructure for userland applications that don't know
       about the graphics internals.
      
      Fixes include some BE/LE issues and a get/put_dev bug in the previous
      version.
      
      Other changes include a change of the module name from "sisusb" to
      "sisusbvga". The previous one was too generic IMHO.
      
      Please note that the patch also affects the Makefile in
      drivers/video/console as the driver requires the VGA 8x16 font in case
      the text console part is selected.
      
      Heavily tested, as usual. Please apply.
      
      One thing though: I already prepared for removal of the "mode" field and
      the changed "name" field in the usb_class_driver structure. This will
      perhaps need some refinement depending on whether you/Linus merge the
      respective core changes before or after 2.6.14.
      
      Signed-off-by: default avatarThomas Winischhofer <thomas@winischhofer.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      1bbb4f20
  6. Sep 08, 2005
    • Alexey Dobriyan's avatar
      [PATCH] USB ldusb: fmt warnings fixes for 64-bit platforms · dd7d5008
      Alexey Dobriyan authored
      
      Fix
      
      drivers/usb/misc/ldusb.c: In function `ld_usb_read':
      drivers/usb/misc/ldusb.c:467: warning: int format, different type arg (arg 4)
      drivers/usb/misc/ldusb.c: In function `ld_usb_write':
      drivers/usb/misc/ldusb.c:531: warning: int format, different type arg (arg 4)
      drivers/usb/misc/ldusb.c:532: warning: int format, different type arg (arg 5)
      drivers/usb/misc/ldusb.c:532: warning: int format, different type arg (arg 6)
      
      Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      dd7d5008
    • Alan Stern's avatar
      [PATCH] USB: URB_ASYNC_UNLINK flag removed from the kernel · b375a049
      Alan Stern authored
      
      29 July 2005, Cambridge, MA:
      
      This afternoon Alan Stern submitted a patch to remove the URB_ASYNC_UNLINK
      flag from the Linux kernel.  Mr. Stern explained, "This flag is a relic
      from an earlier, less-well-designed system.  For over a year it hasn't
      been used for anything other than printing warning messages."
      
      An anonymous spokesman for the Linux kernel development community
      commented, "This is exactly the sort of thing we see happening all the
      time.  As the kernel evolves, support for old techniques and old code can
      be jettisoned and replaced by newer, better approaches.  Proprietary
      operating systems do not have the freedom or flexibility to change so
      quickly."
      
      Mr. Stern, a staff member at Harvard University's Rowland Institute who
      works on Linux only as a hobby, noted that the patch (labelled as548) did
      not update two files, keyspan.c and option.c, in the USB drivers' "serial"
      subdirectory.  "Those files need more extensive changes," he remarked.
      "They examine the status field of several URBs at times when they're not
      supposed to.  That will need to be fixed before the URB_ASYNC_UNLINK flag
      is removed."
      
      Greg Kroah-Hartman, the kernel maintainer responsible for overseeing all
      of Linux's USB drivers, did not respond to our inquiries or return our
      calls.  His only comment was "Applied, thanks."
      
      Signed-off-by: default avatarAlan Stern <stern@rowland.harvard.edu>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      b375a049
  7. Sep 05, 2005
  8. Jul 29, 2005
  9. Jul 12, 2005
    • Michael Hund's avatar
      [PATCH] USB: add ldusb driver · 2824bd25
      Michael Hund authored
      
      The following driver provides complete interrupt-in and interrupt-out
      reports (raw data) to a user program. Until now it uses the
      HIDIOCGDEVINFO ioctl call, because I don't know better :-(. Perhaps, it
      will be ok for you - and I will be happy, if you assign 8 minor numbers.
      
      I have tested it in several environments and it works very well for me.
      However, it has a problem with two or more devices at the same hub, if
      the two or more devices need 1 ms interrupt-in transfers. Unfortunately
      more than one interrupt-in transfer every ms isn't possible (ehci
      driver?). This is why the min_interrupt_in_interval and
      min_interrupt_out_interval are increased to 2 ms (see the corresponding
      module parameters). This way, I can use two devices simultaneously at
      the same hub.
      
      Signed-off-by: default avatarMichael Hund <mhund@ld-didactic.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      2824bd25
  10. Jun 27, 2005
  11. Jun 20, 2005
  12. May 04, 2005
    • Steven Cole's avatar
      [PATCH] USB: Spelling fixes for drivers/usb. · 093cf723
      Steven Cole authored
      
      Here are some spelling corrections for drivers/usb.
      
      cancelation -> cancellation
      succesful -> successful
      cancelation -> cancellation
      decriptor -> descriptor
      Initalize -> Initialize
      wierd -> weird
      Protocoll -> Protocol
      occured -> occurred
      successfull -> successful
      Procesing -> Processing
      devide -> divide
      Isochronuous -> Isochronous
      noticable -> noticeable
      Basicly -> Basically
      transfering -> transferring
      intialize -> initialize
      Incomming -> Incoming
      additionnal -> additional
      asume -> assume
      Unfortunatly -> Unfortunately
      retreive -> retrieve
      tranceiver -> transceiver
      Compatiblity -> Compatibility
      Incorprated -> Incorporated
      existance -> existence
      Ununsual -> Unusual
      
      Signed-off-by: default avatarSteven Cole <elenstev@mesatop.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      093cf723
  13. Apr 26, 2005
  14. Apr 22, 2005
  15. Apr 19, 2005
  16. Apr 16, 2005
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      v2.6.12-rc2
      1da177e4
Loading