xref: /dflybsd-src/sys/dev/misc/lpt/lptio.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino /*
2*86d7f5d3SJohn Marino  *  Copyright (C) 1994 Geoffrey M. Rehmet
3*86d7f5d3SJohn Marino  *
4*86d7f5d3SJohn Marino  *  This program is free software; you may redistribute it and/or
5*86d7f5d3SJohn Marino  *  modify it, provided that it retain the above copyright notice
6*86d7f5d3SJohn Marino  *  and the following disclaimer.
7*86d7f5d3SJohn Marino  *
8*86d7f5d3SJohn Marino  *  This program is distributed in the hope that it will be useful,
9*86d7f5d3SJohn Marino  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10*86d7f5d3SJohn Marino  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11*86d7f5d3SJohn Marino  *
12*86d7f5d3SJohn Marino  *	Geoff Rehmet, Rhodes University, South Africa <csgr@cs.ru.ac.za>
13*86d7f5d3SJohn Marino  *
14*86d7f5d3SJohn Marino  * $FreeBSD: src/sys/dev/ppbus/lptio.h,v 1.8.2.1 2000/07/07 00:30:40 obrien Exp $
15*86d7f5d3SJohn Marino  * $DragonFly: src/sys/dev/misc/lpt/lptio.h,v 1.2 2003/06/17 04:28:29 dillon Exp $
16*86d7f5d3SJohn Marino  */
17*86d7f5d3SJohn Marino 
18*86d7f5d3SJohn Marino #ifndef	_DEV_PPBUS_LPT_H_
19*86d7f5d3SJohn Marino #define	_DEV_PPBUS_LPT_H_
20*86d7f5d3SJohn Marino 
21*86d7f5d3SJohn Marino #include <sys/ioccom.h>
22*86d7f5d3SJohn Marino 
23*86d7f5d3SJohn Marino #define	LPT_IRQ		_IOW('p', 1, long)	/* set interrupt status */
24*86d7f5d3SJohn Marino 
25*86d7f5d3SJohn Marino #endif /* !_DEV_PPBUS_LPT_H_ */
26