Changeset 7d60cf5 in mainline for kernel/arch/ppc32/include
- Timestamp:
- 2009-02-19T21:58:37Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cb223f
- Parents:
- 4b44099d
- Location:
- kernel/arch/ppc32/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/asm.h
r4b44099d r7d60cf5 150 150 extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry); 151 151 152 static inline void pio_write_8(ioport _tport, uint8_t v)152 static inline void pio_write_8(ioport8_t *port, uint8_t v) 153 153 { 154 154 /* XXX */ 155 155 } 156 156 157 static inline uint8_t pio_read_8(ioport _tport)157 static inline uint8_t pio_read_8(ioport8_t *port) 158 158 { 159 159 return 0; /* XXX */ -
kernel/arch/ppc32/include/types.h
r4b44099d r7d60cf5 58 58 typedef int32_t native_t; 59 59 60 typedef uintptr_t ioport_t; 60 typedef volatile uint8_t ioport8_t; 61 typedef volatile uint16_t ioport16_t; 62 typedef volatile uint32_t ioport32_t; 61 63 62 64 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.