1. 22 Mar, 2002 1 commit
  2. 21 Mar, 2002 4 commits
    • Oliver Neukum's avatar
      USB kaweth driver · f0c3878e
      Oliver Neukum authored
      added optus@home uep1045a driver to the list of supported devices.
      f0c3878e
    • Greg Kroah-Hartman's avatar
      USB serial drivers · e1127c36
      Greg Kroah-Hartman authored
      changes due to open_count being handled by the usb-serial core code.
      e1127c36
    • Greg Kroah-Hartman's avatar
      USB serial driver core · 9fb1cce0
      Greg Kroah-Hartman authored
      - Moved all manipulation of port->open_count into the core.  Now the
        individual driver's open and close functions are called only when the
        first open() and last close() is called.  Making the drivers a bit
        smaller and simpler.
      - Fixed a bug if a driver didn't have the owner field set.
      9fb1cce0
    • Greg Kroah-Hartman's avatar
      USB visor driver · 16c12b0b
      Greg Kroah-Hartman authored
      Added support for the Palm m130 device, thanks to Udo Eisenbarth
      <udo.eisenbarth@web.de> for the information.
      16c12b0b
  3. 20 Mar, 2002 2 commits
  4. 19 Mar, 2002 4 commits
    • Oliver Neukum's avatar
      USB hpusbscsi driver · f7148255
      Oliver Neukum authored
      Port changes from 2.4:
        We do request_sense ourselves to comply with
        the scanner command set
      f7148255
    • Greg Kroah-Hartman's avatar
      USB proc_usb_info.txt · c32692c6
      Greg Kroah-Hartman authored
      documented the fact that the interval is not always reported in ms.
      c32692c6
    • David Brownell's avatar
      USB usbfs periodic endpoint/bandwidth reporting · ac5a7740
      David Brownell authored
      This is an updated version of a patch I sent around a
      while back.  It's against 2.5.7-pre1 (so presumably is
      fine on 2.5.7), and addresses feedback against that
      earlier patch.
        
      It's bugfixes, mostly for highspeed support, to what
      /proc/bus/usb/devices shows:
        
      - Shows isochronous periods correctly (logarithmic
        encoding, possibly 1/2/4 microframes if highspeed)
      - Likewise for high-speed interrupt periods (similar)
      - Makes high bandwidth endpoints look like they
        just do bigger packets (up to 3 KBytes/uframe)
      - Shows highspeed bandwidth correctlly (80% reserved,
        vs 90% reserved for full/low speed).
      ac5a7740
    • Ganesh Varadarajan's avatar
      USB ipaq driver · 9c5c07fb
      Ganesh Varadarajan authored
      Don't submit urbs while holding spinlocks. Not strictly required in
      2.5.x, but it's always better to do less while holding a spinlock.
      Also a good idea to keep 2.{4,5}.x drivers in sync.
      9c5c07fb
  5. 18 Mar, 2002 29 commits
    • Johannes Erdfelt's avatar
      [PATCH] uhci.c 2.4.19-pre3 interrupt deadlock · e4bd5f50
      Johannes Erdfelt authored
      Unfortunately, I left out one line from my spinlock cleanup patch
      recently.
      
      As a result, using interrupt URB's could cause a deadlock on SMP
      kernels.
      
      This should fix the deadlock Greg reported.
      
      JE
      e4bd5f50
    • Johannes Erdfelt's avatar
      [PATCH] uhci.c 2.4.19-pre3 erroneous completion callback · 0a615934
      Johannes Erdfelt authored
      uhci.c would call the completion callback when the call to submit_urb
      failed. This is a rare situation.
      
      This patch only calls the completion handler if the URB successfully
      completed immediately (as in the case of talking to the virtual root
      hub).
      
      JE
      0a615934
    • Johannes Erdfelt's avatar
      [PATCH] uhci.c 2.4.19-pre3 kmem_cache_alloc flags · 40bb0d53
      Johannes Erdfelt authored
      My previous patch which cleaned up some of the spinlocks, moved one of
      the spinlocks around a call to kmem_cache_alloc. It would sometimes
      erroneously call it with GFP_KERNEL.
      
      This patch fixes the problem by always calling it with GFP_ATOMIC.
      Thanks to Greg for pointing this out to me.
      
      JE
      40bb0d53
    • David Brownell's avatar
      This updates linux/Documentation/usb/proc_usb_info.txt to: · 02b43b71
      David Brownell authored
          - refer to "usbfs"
          - describe the /proc/bus/usb/BBB/DDD files
          - more info about the .../drivers and .../devices
          - ... generally, gives more information.
        
      This is ever so slightly forward looking in how it describes
      bandwidth requirements for high speed periodic transfers,
      it's expecting a bugfix patch that's in my queue.  (That info            
      is currently broken/meaningless.)
      02b43b71
    • David Brownell's avatar
      USB echi and Intel ICH · 23a2ae0c
      David Brownell authored
        
      This updates the Philips tweak so that it also applies
      to late-model ICH chips from Intel.  (Or so I'm told ... :)
      That's at least three EHCI implementations known to
      behave on Linux.  (And one hopes VIA soon too...)
      
      It also cleans up a few comments relating to 64bit DMA;
      recent API spec updates make it look like no games are
      needed with the PCI DMA mask -- it doesn't change the
      segment used by pci_pool allocations, so it just needs
      to get turned on if the overall system does 64bit DMA.
      
      I've a query in to see if those Philips/Intel tweaks are
      chip quirks, or just something the EHCI 1.0 spec isn't
      at all clear about.
      23a2ae0c
    • David Brownell's avatar
      USB · 4a3ff8ea
      David Brownell authored
      inline cleanup to save a chunk of memory in usb-ohci
      4a3ff8ea
    • David Brownell's avatar
      USB · 4a53529c
      David Brownell authored
      Comment and documentation cleanups
      4a53529c
    • David Brownell's avatar
      USB mem flags nonpoisonous · d00cdf62
      David Brownell authored
      This patch completely punts on passing SLAB_POISON, I've
      gotten burnt by it once too many.  Seems like the slab code
      changed somewhere.  I've got a separate patch to make the
      pci_pool code use CONFIG_DEBUG_SLAB, which I'll send
      around.
          
      Meanwhile, I needed this to get at least EHCI to intialize on
      a 2.5.7-pre1 system.  Please merge.
      d00cdf62
    • David Brownell's avatar
      USB hcd.c, non-HS periodic transfers · 015474f8
      David Brownell authored
      This patch adds a missing "break", which prevented low and full
      speed periodic transfers from getting through the "hcd" framework
      to the driver (OHCI, for now).  Sigh... :)
      015474f8
    • David Paschal's avatar
      USB printer driver · de5847c4
      David Paschal authored
      added more printer quirks to the list
      de5847c4
    • Kai Reichert's avatar
      USB printer driver · fd200b7e
      Kai Reichert authored
      added HP DeskJet 959C to the quirks list
      fd200b7e
    • Linus Torvalds's avatar
      Update version · 085c9a18
      Linus Torvalds authored
      085c9a18
    • Linus Torvalds's avatar
      51331cc8
    • Hirofumi Ogawa's avatar
      [PATCH] cleanup FAT stuff (2/2) · 695f66cf
      Hirofumi Ogawa authored
      This patch remove unused variable/function/define, and small indent
      cleanup.
      695f66cf
    • Hirofumi Ogawa's avatar
      [PATCH] Fix linux/msdos_fs.h for userland (1/2) · 9285a3a7
      Hirofumi Ogawa authored
      The following patch moves MSDOS_SB() and MSDOS_I() into #define
      __KERNEL__.
      9285a3a7
    • Martin Dalecki's avatar
      [PATCH] 2.5.7-pre2 IDE 22a · 198231a8
      Martin Dalecki authored
      - Apply more patches from Vojtech Pavlik for the handling of host chip setup.
         Hopefully they are settled now.
      
      - Kill unused CONFIG_BLK_DEV_MODES
      
      - Push register addressing down in to task_vlb_sync.
      
      - Make the taskfile parsing stuff actually readable. This is compressing the
         code by an incredible amount. We use just one function doing the whole
         scanning right now. This should make sure that the IRQ handler used by a
         particular command is always right.  I didn't introduce typos hopefully
         here.
      
      - Don't call ide_handler_parser as argument for do_taskfile() any longer. We
         have killed this function by coalescing it's functionality with
         ide_cmd_type_parser() anyway.
      
      - Kill unused SLC90E66 code, which Vojtech apparently missed in his patch.
      
      - sync up with 2.5.7-pre2
      
      Once again the actual patch is rather big mostly due to the removal of
      some default configuration variables which are not used anylonger. So time for
      the next patch stage.
      198231a8
    • Jaroslav Kysela's avatar
      [PATCH] for 2.5.7pre2 · ed0e83f5
      Jaroslav Kysela authored
      - add joystick support for CS46xx driver
      - Audigy code updates
      - fix sound/core/Config.in (wrong dep_tristate usage)
      - rawmidi interface fixes (memory leak)
      - chang spinlock to rwlock in pcm_native.c (streams linking)
      - further fixes of dependencies in Makefiles
      - remove experimental time-sync support from sequencer
      - fix/update for 32-bit -> 64-bit ioctl converter code
      - wavefront driver cleanups
      - CMIPCI driver updates
      - update joystick support in CS4281
      - add detection (not support) of M Audio Delta1010LT
      - add AMD768 PCI ID to intel8x0 driver
      - add joystick code to trident driver
      - remove static variable initialization to zero
      ed0e83f5
    • Andrey Panin's avatar
      [PATCH] driverfs support for ISAPNP driver · 1f19b987
      Andrey Panin authored
      This adds initial driverfs support to ISAPNP driver.  It was approved by
      the ISAPNP maintainer (Jaroslav Kysela).
      1f19b987
    • Brian Gerst's avatar
      [PATCH] struct super_block cleanup - affs · fe3c9239
      Brian Gerst authored
      Seperates affs_sb_info from struct super_block.
      fe3c9239
    • Brian Gerst's avatar
      [PATCH] struct super_block cleanup - hfs · e368ea0b
      Brian Gerst authored
      Seperates hfs_sb_info from struct super_block.
      e368ea0b
    • Brian Gerst's avatar
      [PATCH] struct super_block cleanup - shmem · 4758c319
      Brian Gerst authored
      Seperates shmem_sb_info from struct super_block.
      4758c319
    • Linus Torvalds's avatar
      Automerge · 5326862d
      Linus Torvalds authored
      5326862d
    • Alexander Viro's avatar
      [PATCH] moving stuff to fs/filesystems.c · cfc632c8
      Alexander Viro authored
      	file_system_typer-related code moved from fs/super.c to
      fs/filesystems.c
      cfc632c8
    • Linus Torvalds's avatar
      Merge http://linuxusb.bkbits.net/linus-2.5 · 20f2ef0b
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      20f2ef0b
    • Linus Torvalds's avatar
      Automerge · c3d7ae3b
      Linus Torvalds authored
      c3d7ae3b
    • Brian Gerst's avatar
      [PATCH] struct super_block cleanup - udf · 27033215
      Brian Gerst authored
      Seperates udf_sb_info from struct super_block.
      27033215
    • Brian Gerst's avatar
      [PATCH] struct super_block cleanup - isofs · 7d42ccf3
      Brian Gerst authored
      Seperates isofs_sb_info from struct super_block.
      7d42ccf3
    • David Brownell's avatar
      [PATCH] PATCH -- pci_pool and CONFIG_DEBUG_SLAB · b286bd16
      David Brownell authored
      I got burnt one too many time by mismatches between
      the pci_pool and "real" slabs... something changed in
      mm/slab.c and broke a driver, so I'm going for the real
      fix this time.  Having poisoning that _works_ is a huge
      help in the innards of the USB host controller drivers.
      
      This patch gets rid of some #ifdefs and makes the pci_pool
      code poison memory if CONFIG_DEBUG_SLAB is set.
      The functionality has always been there, but this makes
      it simpler to get at.
      b286bd16
    • Linus Torvalds's avatar
      Merge bk://ppc.bkbits.net/for-linus-ppc · ccd6307f
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      ccd6307f