Changeset 7f1c620 in mainline for arch/amd64/src/ddi/ddi.c
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/ddi/ddi.c
r991779c5 r7f1c620 56 56 * @return 0 on success or an error code from errno.h. 57 57 */ 58 int ddi_iospace_enable_arch(task_t *task, __addressioaddr, size_t size)58 int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size) 59 59 { 60 60 count_t bits; … … 66 66 if (task->arch.iomap.bits < bits) { 67 67 bitmap_t oldiomap; 68 __u8*newmap;68 uint8_t *newmap; 69 69 70 70 /* … … 72 72 */ 73 73 74 newmap = ( __u8*) malloc(BITS2BYTES(bits), FRAME_ATOMIC);74 newmap = (uint8_t *) malloc(BITS2BYTES(bits), FRAME_ATOMIC); 75 75 if (!newmap) 76 76 return ENOMEM;
Note:
See TracChangeset
for help on using the changeset viewer.