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