diff options
author | Ben Dooks <ben-linux@fluff.org> | 2006-06-25 08:48:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:09 -0400 |
commit | ad4063b0b2ffd7c8359b62c830e88152fc39ab20 (patch) | |
tree | 8bfc0132bd7bf851dbc495b4f9a7460904d332b8 /include/linux/parport.h | |
parent | 11e64757f9fb32f13f51596bbf01988f42fca764 (diff) |
[PATCH] AX88796 parallel port driver
Driver for the simple parallel port interface on the Asix AX88796 chip on
an platform_bus.
[akpm@osdl.org: x86_64 build fix]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/parport.h')
-rw-r--r-- | include/linux/parport.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/parport.h b/include/linux/parport.h index d42737eeee06..5bf321e82c99 100644 --- a/include/linux/parport.h +++ b/include/linux/parport.h | |||
@@ -127,6 +127,10 @@ struct amiga_parport_state { | |||
127 | unsigned char statusdir;/* ciab.ddrb & 7 */ | 127 | unsigned char statusdir;/* ciab.ddrb & 7 */ |
128 | }; | 128 | }; |
129 | 129 | ||
130 | struct ax88796_parport_state { | ||
131 | unsigned char cpr; | ||
132 | }; | ||
133 | |||
130 | struct ip32_parport_state { | 134 | struct ip32_parport_state { |
131 | unsigned int dcr; | 135 | unsigned int dcr; |
132 | unsigned int ecr; | 136 | unsigned int ecr; |
@@ -138,6 +142,7 @@ struct parport_state { | |||
138 | /* ARC has no state. */ | 142 | /* ARC has no state. */ |
139 | struct ax_parport_state ax; | 143 | struct ax_parport_state ax; |
140 | struct amiga_parport_state amiga; | 144 | struct amiga_parport_state amiga; |
145 | struct ax88796_parport_state ax88796; | ||
141 | /* Atari has not state. */ | 146 | /* Atari has not state. */ |
142 | struct ip32_parport_state ip32; | 147 | struct ip32_parport_state ip32; |
143 | void *misc; | 148 | void *misc; |