Changeset 6da1013f in mainline for kernel/arch/ia64/include/asm.h
- Timestamp:
- 2009-02-12T20:09:19Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 84266669
- Parents:
- 7004747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/asm.h
r7004747 r6da1013f 42 42 #define IA64_IOSPACE_ADDRESS 0xE001000000000000ULL 43 43 44 static inline void 44 static inline void outb(ioport_t port, uint8_t v) 45 45 { 46 46 *((uint8_t *)(IA64_IOSPACE_ADDRESS + … … 50 50 } 51 51 52 static inline void 52 static inline void outw(ioport_t port, uint16_t v) 53 53 { 54 54 *((uint16_t *)(IA64_IOSPACE_ADDRESS + … … 58 58 } 59 59 60 static inline void 60 static inline void outl(ioport_t port, uint32_t v) 61 61 { 62 62 *((uint32_t *)(IA64_IOSPACE_ADDRESS +
Note:
See TracChangeset
for help on using the changeset viewer.