Changeset 7f1c620 in mainline for arch/ia32/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/ia32/src/ddi/ddi.c
r991779c5 r7f1c620 57 57 * @return 0 on success or an error code from errno.h. 58 58 */ 59 int ddi_iospace_enable_arch(task_t *task, __addressioaddr, size_t size)59 int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size) 60 60 { 61 61 count_t bits; … … 67 67 if (task->arch.iomap.bits < bits) { 68 68 bitmap_t oldiomap; 69 __u8*newmap;69 uint8_t *newmap; 70 70 71 71 /* … … 73 73 */ 74 74 75 newmap = ( __u8*) malloc(BITS2BYTES(bits), FRAME_ATOMIC);75 newmap = (uint8_t *) malloc(BITS2BYTES(bits), FRAME_ATOMIC); 76 76 if (!newmap) 77 77 return ENOMEM;
Note:
See TracChangeset
for help on using the changeset viewer.