1PARPORT(3) Structures PARPORT(3)
2
3
4
6 parport - representation of a parallel port
7
9 #include <ieee1284.h>
10
12 A parport structure represents a parallel port.
13
15 The structure has the following members:
16
17 struct parport {
18 /* An artibrary name for the port. */
19 const char *name;
20
21 /* The base address of the port, if that has any meaning, or zero. */
22 unsigned long base_addr;
23
24 /* The ECR address of the port, if that has any meaning, or zero. */
25 unsigned long hibase_addr;
26
27 /* The filename associated with this port,
28 * if that has any meaning, or NULL. */
29 const char *filename;
30 };
31
33 Tim Waugh <twaugh@redhat.com>
34 Author.
35
37 Copyright © 2001-2003 Tim Waugh
38
39
40
41[FIXME: source] 06/17/2014 PARPORT(3)