io.h 516 B

12345678910111213141516
  1. #ifndef _ASM_SH_IO_EC3104_H
  2. #define _ASM_SH_IO_EC3104_H
  3. #include <linux/types.h>
  4. extern unsigned char ec3104_inb(unsigned long port);
  5. extern unsigned short ec3104_inw(unsigned long port);
  6. extern unsigned long ec3104_inl(unsigned long port);
  7. extern void ec3104_outb(unsigned char value, unsigned long port);
  8. extern void ec3104_outw(unsigned short value, unsigned long port);
  9. extern void ec3104_outl(unsigned long value, unsigned long port);
  10. extern int ec3104_irq_demux(int irq);
  11. #endif /* _ASM_SH_IO_EC3104_H */