Changeset bbc28be in mainline for uspace/drv
- Timestamp:
- 2010-12-03T12:59:13Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 70c85211
- Parents:
- 2e15ac40 (diff), da55d5b (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
- Files:
-
- 4 edited
-
isa/isa.c (modified) (1 diff)
-
ns8250/ns8250.c (modified) (1 diff)
-
pciintel/pci.c (modified) (2 diffs)
-
root/root.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/isa/isa.c
r2e15ac40 rbbc28be 493 493 /* Add child devices. */ 494 494 add_legacy_children(dev); 495 printf(NAME ": finished the enumeration of legacy devices\n", 496 dev->handle); 495 printf(NAME ": finished the enumeration of legacy devices\n"); 497 496 498 497 return EOK; -
uspace/drv/ns8250/ns8250.c
r2e15ac40 rbbc28be 276 276 if (pio_enable((void *) data->io_addr, REG_COUNT, 277 277 (void **) &data->port)) { 278 printf(NAME ": error - cannot gain the port % lxfor device "278 printf(NAME ": error - cannot gain the port %#" PRIx32 " for device " 279 279 "%s.\n", data->io_addr, dev->name); 280 280 return false; -
uspace/drv/pciintel/pci.c
r2e15ac40 rbbc28be 323 323 if (range_addr != 0) { 324 324 printf(NAME ": device %s : ", dev->name); 325 printf("address = % x", range_addr);325 printf("address = %" PRIx64, range_addr); 326 326 printf(", size = %x\n", range_size); 327 327 } … … 479 479 } 480 480 481 printf(NAME ": conf_addr = % x.\n",481 printf(NAME ": conf_addr = %" PRIx64 ".\n", 482 482 hw_resources.resources[0].res.io_range.address); 483 483 -
uspace/drv/root/root.c
r2e15ac40 rbbc28be 45 45 #include <ctype.h> 46 46 #include <macros.h> 47 #include <inttypes.h> 47 48 48 49 #include <driver.h> … … 180 181 static int root_add_device(device_t *dev) 181 182 { 182 printf(NAME ": root_add_device, device handle = %d\n", dev->handle); 183 printf(NAME ": root_add_device, device handle=%" PRIun "\n", 184 dev->handle); 183 185 184 186 /* Register root device's children. */
Note:
See TracChangeset
for help on using the changeset viewer.
