Changeset 6da1013f in mainline for kernel/arch/arm32/include/asm.h


Ignore:
Timestamp:
2009-02-12T20:09:19Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
84266669
Parents:
7004747
Message:

simplify configuration
introduce arch_construct_function and inb/outb (sometimes empty) on all platforms
various code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/asm.h

    r7004747 r6da1013f  
    4747}
    4848
     49/** No I/O port address space on ARM. */
     50static inline void outb(ioport_t port, uint8_t v)
     51{
     52}
     53
     54/** No I/O port address space on ARM. */
     55static inline uint8_t inb(ioport_t port)
     56{
     57        return 0;
     58}
     59
    4960/** Return base address of current stack.
    5061 *
Note: See TracChangeset for help on using the changeset viewer.