Changeset cfb79747 in mainline for uspace/drv/bus
- Timestamp:
- 2012-02-14T22:06:15Z (14 years ago)
- 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. - Location:
- uspace/drv/bus
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/isa/isa.c
r199112e4 rcfb79747 401 401 402 402 val = skip_spaces(val); 403 irq = (int) strtol(val, &end, 10);403 irq = (int) strtol(val, &end, 10); 404 404 405 405 if (val != end) -
uspace/drv/bus/isa/isa.dev
r199112e4 rcfb79747 14 14 irq 12 15 15 io_range 060 5 16 17 16 18 17 ne2k: -
uspace/drv/bus/isa/isa.ma
r199112e4 rcfb79747 1 9 pci/ ven=8086&dev=70001 9 pci/class=06&subclass=01 -
uspace/drv/bus/pci/pciintel/pci.c
r199112e4 rcfb79747 92 92 static bool pciintel_enable_interrupt(ddf_fun_t *fnode) 93 93 { 94 /* This is an old ugly way , copied from ne2000 driver*/94 /* This is an old ugly way */ 95 95 assert(fnode); 96 96 pci_fun_t *dev_data = (pci_fun_t *) fnode->driver_data; -
uspace/drv/bus/usb/usbhid/mouse/mousedev.c
r199112e4 rcfb79747 167 167 return result; 168 168 } 169 /*----------------------------------------------------------------------------*/ 169 170 170 static bool usb_mouse_process_report(usb_hid_dev_t *hid_dev, 171 171 usb_mouse_t *mouse_dev) … … 305 305 return EOK; 306 306 } 307 /*----------------------------------------------------------------------------*/ 307 308 308 /** Get highest index of a button mentioned in given report. 309 309 *
Note:
See TracChangeset
for help on using the changeset viewer.