Changeset cfb79747 in mainline for uspace/drv/bus


Ignore:
Timestamp:
2012-02-14T22:06:15Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a31aad1
Parents:
199112e4 (diff), e10d41a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Location:
uspace/drv/bus
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/isa/isa.c

    r199112e4 rcfb79747  
    401401
    402402        val = skip_spaces(val);
    403         irq = (int)strtol(val, &end, 10);
     403        irq = (int) strtol(val, &end, 10);
    404404
    405405        if (val != end)
  • uspace/drv/bus/isa/isa.dev

    r199112e4 rcfb79747  
    1414        irq 12
    1515        io_range 060 5
    16        
    1716
    1817ne2k:
  • uspace/drv/bus/isa/isa.ma

    r199112e4 rcfb79747  
    1 9 pci/ven=8086&dev=7000
     19 pci/class=06&subclass=01
  • uspace/drv/bus/pci/pciintel/pci.c

    r199112e4 rcfb79747  
    9292static bool pciintel_enable_interrupt(ddf_fun_t *fnode)
    9393{
    94         /* This is an old ugly way, copied from ne2000 driver */
     94        /* This is an old ugly way */
    9595        assert(fnode);
    9696        pci_fun_t *dev_data = (pci_fun_t *) fnode->driver_data;
  • uspace/drv/bus/usb/usbhid/mouse/mousedev.c

    r199112e4 rcfb79747  
    167167        return result;
    168168}
    169 /*----------------------------------------------------------------------------*/
     169
    170170static bool usb_mouse_process_report(usb_hid_dev_t *hid_dev,
    171171    usb_mouse_t *mouse_dev)
     
    305305        return EOK;
    306306}
    307 /*----------------------------------------------------------------------------*/
     307
    308308/** Get highest index of a button mentioned in given report.
    309309 *
Note: See TracChangeset for help on using the changeset viewer.