home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-sh / ec3104 / io.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  516 b   |  17 lines

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