Changeset 971f50e7 in mainline for uspace/drv/time/cmos-rtc/cmos-rtc.c
- Timestamp:
- 2012-08-20T22:37:25Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6560960
- Parents:
- 762083b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/time/cmos-rtc/cmos-rtc.c
r762083b r971f50e7 66 66 fibril_mutex_t mutex; 67 67 /** The base I/O address of the device registers */ 68 uint32_tio_addr;68 ioport8_t *io_addr; 69 69 /** The I/O port used to access the CMOS registers */ 70 70 ioport8_t *port; … … 222 222 goto error; 223 223 } 224 rtc->io_addr = res->res.io_range.address;224 rtc->io_addr = (ioport8_t *) res->res.io_range.address; 225 225 ioport = true; 226 226 ddf_msg(LVL_NOTE, "Device %s was assigned I/O address \
Note:
See TracChangeset
for help on using the changeset viewer.