21 Jun, 2005

1 commit


03 Jun, 2005

3 commits


04 May, 2005

1 commit

  • 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: Steven Cole
    Signed-off-by: Greg Kroah-Hartman

    Steven Cole
     

24 Apr, 2005

1 commit

  • when stealing code from ati_remote for a GPL-driver of my usbradio (because of
    its neat usb int transfers) I found out, that the inbuf is freed twice.

    I don't have the ati-remote, so I don't know it is a problem at all, but it
    looks strange to me anyway. Also I don't know if it has been fixed already in
    newer kernel versions.

    From: Patrick Boettcher
    Signed-off-by: Greg Kroah-Hartman

    Patrick Boettcher
     

23 Apr, 2005

1 commit


19 Apr, 2005

3 commits

  • …sfs (/sys/class/input/event#)

    PROBLEM: aiptek input doesn`t register `device` & `driver` section in sysfs (/sys/class/input/event#)
    REASON: `dev` - field not filled...
    SOLUTION: in linux/drivers/usb/input/aiptek.c write
    aiptek->inputdev.dev = &intf->dev;
    before calling
    input_register_device(&aiptek->inputdev);

    From: "Viktor A. Danilov" <__die@mail.ru>
    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

    Index: gregkh-2.6/drivers/usb/input/aiptek.c
    ===================================================================

    Viktor A. Danilov
     
  • Get rid of a bunch of redundant NULL pointer checks in drivers/usb/*,
    there's no need to check a pointer for NULL before calling kfree() on it.

    Signed-off-by: Jesper Juhl
    Signed-off-by: Greg Kroah-Hartman

    Index: gregkh-2.6/drivers/usb/class/audio.c
    ===================================================================

    Jesper Juhl
     
  • This is the first of a few installments of PM API updates to match the
    recent switch to "pm_message_t". This installment primarily affects
    USB device drivers (for USB interfaces), and it changes the handful of
    drivers which currently implement suspend methods:

    - and usbcore, signature change

    - Some drivers only changed the signature, net effect this just
    shuts up "sparse -Wbitwise":
    * hid-core
    * stir4200

    - Two network drivers did that, and also grew slightly more
    featureful suspend code ... they now properly shut down
    their activities. (As should stir4200...)
    * pegasus
    * usbnet

    Note that the Wake-On-Lan (WOL) support in pegasus doesn't yet work; looks
    to me like it's missing a request to turn it on, vs just configuring it.
    The ASIX code in usbnet also has WOL hooks that are ready to use; untested.

    Signed-off-by: David Brownell
    Signed-off-by: Andrew Morton
    Signed-off-by: Greg Kroah-Hartman

    Index: gregkh-2.6/drivers/net/irda/stir4200.c
    ===================================================================

    David Brownell
     

17 Apr, 2005

1 commit

  • 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!

    Linus Torvalds