Rev 3880 | Rev 3929 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3880 | Rev 3902 | ||
---|---|---|---|
Line 44... | Line 44... | ||
44 | /** No such instruction on ARM to sleep CPU. */ |
44 | /** No such instruction on ARM to sleep CPU. */ |
45 | static inline void cpu_sleep(void) |
45 | static inline void cpu_sleep(void) |
46 | { |
46 | { |
47 | } |
47 | } |
48 | 48 | ||
49 | /** No I/O port address space on ARM. */ |
- | |
50 | static inline void outb(ioport_t port, uint8_t v) |
49 | static inline void pio_write_8(ioport_t port, uint8_t v) |
51 | { |
50 | { |
- | 51 | /* XXX */ |
|
52 | } |
52 | } |
53 | 53 | ||
54 | /** No I/O port address space on ARM. */ |
- | |
55 | static inline uint8_t inb(ioport_t port) |
54 | static inline uint8_t pio_read_8(ioport_t port) |
56 | { |
55 | { |
57 | return 0; |
56 | return 0; /* XXX */ |
58 | } |
57 | } |
59 | 58 | ||
60 | /** Return base address of current stack. |
59 | /** Return base address of current stack. |
61 | * |
60 | * |
62 | * Return the base address of the current stack. |
61 | * Return the base address of the current stack. |