ebedb5ad97
- don't include <sys/ioctl.h> in any header. Include <sys/ioccom.h> instead. This was already done in 4.4Lite for the most important ioctl headers. Header spam currently increases kernel build times by 10-20%. There are more than 30000 #includes (not counting duplicates) for compiling LINT. - include <sys/types.h> if and only it is necessary to make the header almost self-sufficient (some ioctl headers still need structs from elsewhere). - uniformized idempotency ifdefs. Copied the style in the 4.4Lite ioctl headers.
26 lines
793 B
C
26 lines
793 B
C
#ifndef _I386_ISA_GPIB_H_
|
|
#define _I386_ISA_GPIB_H_
|
|
|
|
#include <sys/ioccom.h>
|
|
|
|
/* gpib data structures */
|
|
struct gpibdata {
|
|
char *data; /* data string for ins and outs */
|
|
unsigned char address; /* gpib address */
|
|
int *count;
|
|
} ;
|
|
|
|
/* IOCTL commands */
|
|
#define GPIBWRITE _IOW('g',1,struct gpibdata)
|
|
#define GPIBREAD _IOW('g',2,struct gpibdata)
|
|
#define GPIBINIT _IOW('g',3,struct gpibdata)
|
|
#define GPIBTRIGGER _IOW('g',4,struct gpibdata)
|
|
#define GPIBREMOTE _IOW('g',5,struct gpibdata)
|
|
#define GPIBLOCAL _IOW('g',6,struct gpibdata)
|
|
#define GPIBMTRIGGER _IOW('g',7,struct gpibdata)
|
|
#define GPIBMREMOTE _IOW('g',8,struct gpibdata)
|
|
#define GPIBMLOCAL _IOW('g',9,struct gpibdata)
|
|
#define GPIBSPOLL _IOW('g',10,struct gpibdata)
|
|
|
|
#endif /* !_I386_ISA_GPIB_H_ */
|