Changeset 340513c in mainline
- Timestamp:
- 2016-10-31T23:31:05Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 405b67c
- Parents:
- 54861ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
r54861ca r340513c 163 163 int irq; 164 164 /** The base i/o address of the devices registers. */ 165 uint 32_t io_addr;165 uintptr_t io_addr; 166 166 /** The i/o port used to access the serial ports registers. */ 167 167 ioport8_t *port; … … 330 330 331 331 /* Gain control over port's registers. */ 332 if (pio_enable((void *) (uintptr_t)ns->io_addr, REG_COUNT,332 if (pio_enable((void *) ns->io_addr, REG_COUNT, 333 333 (void **) &ns->port)) { 334 ddf_msg(LVL_ERROR, "Cannot map the port %#" PRIx 32334 ddf_msg(LVL_ERROR, "Cannot map the port %#" PRIxn 335 335 " for device %s.", ns->io_addr, ddf_dev_get_name(ns->dev)); 336 336 return false; … … 432 432 ioport = true; 433 433 ddf_msg(LVL_NOTE, "Device %s was assigned I/O address = " 434 "0x% x.", ddf_dev_get_name(ns->dev), ns->io_addr);434 "0x%#" PRIxn ".", ddf_dev_get_name(ns->dev), ns->io_addr); 435 435 break; 436 436
Note:
See TracChangeset
for help on using the changeset viewer.