Changeset 6da1013f in mainline for kernel/arch/arm32
- Timestamp:
- 2009-02-12T20:09:19Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 84266669
- Parents:
- 7004747
- Location:
- kernel/arch/arm32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/asm.h
r7004747 r6da1013f 47 47 } 48 48 49 /** No I/O port address space on ARM. */ 50 static inline void outb(ioport_t port, uint8_t v) 51 { 52 } 53 54 /** No I/O port address space on ARM. */ 55 static inline uint8_t inb(ioport_t port) 56 { 57 return 0; 58 } 59 49 60 /** Return base address of current stack. 50 61 * -
kernel/arch/arm32/src/arm32.c
r7004747 r6da1013f 93 93 .y = 480, 94 94 .scan = 1920, 95 .visual = VISUAL_ RGB_8_8_8,95 .visual = VISUAL_BGR_8_8_8, 96 96 }; 97 97 fb_init(&prop); … … 165 165 { 166 166 /* not implemented */ 167 for (;;) 168 ; 167 while (1); 168 } 169 170 /** Construct function pointer 171 * 172 * @param fptr function pointer structure 173 * @param addr function address 174 * @param caller calling function address 175 * 176 * @return address of the function pointer 177 * 178 */ 179 void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller) 180 { 181 return addr; 169 182 } 170 183
Note:
See TracChangeset
for help on using the changeset viewer.