Changeset ee06f2a in mainline for kernel/arch/mips32/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/mips32/include/asm.h
re7f2ad68 ree06f2a 71 71 extern ipl_t interrupts_read(void); 72 72 73 /** No I/O port address space on MIPS. */ 74 static inline void outb(ioport_t port, uint8_t v) 73 static inline void pio_write_8(ioport_t port, uint8_t v) 75 74 { 75 /* XXX */ 76 76 } 77 77 78 /** No I/O port address space on MIPS. */ 79 static inline uint8_t inb(ioport_t port) 78 static inline uint8_t pio_read_8(ioport_t port) 80 79 { 81 return 0; 80 return 0; /* XXX */ 82 81 } 83 82
Note:
See TracChangeset
for help on using the changeset viewer.