Home | History | Annotate | Line # | Download | only in include
wdogvar.h revision 1.1
      1  1.1  msaitoh #ifndef _SH3_WDOGVAR_H_
      2  1.1  msaitoh #define _SH3_WDOGVAR_H_
      3  1.1  msaitoh 
      4  1.1  msaitoh #define WDOGF_OPEN	1
      5  1.1  msaitoh 
      6  1.1  msaitoh #define SIORESETWDOG	_IO('S', 0x0)
      7  1.1  msaitoh #define SIOSTARTWDOG	_IO('S', 0x1)
      8  1.1  msaitoh #define SIOSTOPWDOG	_IO('S', 0x2)
      9  1.1  msaitoh #define	SIOSETWDOG	_IOW('S', 0x3, int)
     10  1.1  msaitoh 
     11  1.1  msaitoh #ifdef _KERNEL
     12  1.1  msaitoh extern void wdog_wr_cnt __P((unsigned char));
     13  1.1  msaitoh extern void wdog_wr_csr __P((unsigned char));
     14  1.1  msaitoh #endif
     15  1.1  msaitoh 
     16  1.1  msaitoh #endif /* !_SH3_WDOGVAR_H_ */
     17