Changeset ee06f2a in mainline for kernel/arch/ppc32/include/asm.h
- Timestamp:
- 2009-02-15T15:28:00Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d96f4d
- Parents:
- e7f2ad68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/asm.h
re7f2ad68 ree06f2a 150 150 extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry); 151 151 152 /** No I/O port address space on PowerPC. */ 153 static inline void outb(ioport_t port, uint8_t v) 152 static inline void pio_write_8(ioport_t port, uint8_t v) 154 153 { 154 /* XXX */ 155 155 } 156 156 157 /** No I/O port address space on PowerPC. */ 158 static inline uint8_t inb(ioport_t port) 157 static inline uint8_t pio_read_8(ioport_t port) 159 158 { 160 return 0; 159 return 0; /* XXX */ 161 160 } 162 161
Note:
See TracChangeset
for help on using the changeset viewer.