diff options
author | Ben Dooks <ben-linux@fluff.org> | 2006-06-25 05:48:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 10:01:09 -0700 |
commit | ad4063b0b2ffd7c8359b62c830e88152fc39ab20 (patch) | |
tree | 8bfc0132bd7bf851dbc495b4f9a7460904d332b8 /include | |
parent | 11e64757f9fb32f13f51596bbf01988f42fca764 (diff) | |
download | op-kernel-dev-ad4063b0b2ffd7c8359b62c830e88152fc39ab20.zip op-kernel-dev-ad4063b0b2ffd7c8359b62c830e88152fc39ab20.tar.gz |
[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')
-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 d42737e..5bf321e 100644 --- a/include/linux/parport.h +++ b/include/linux/parport.h @@ -127,6 +127,10 @@ struct amiga_parport_state { unsigned char statusdir;/* ciab.ddrb & 7 */ }; +struct ax88796_parport_state { + unsigned char cpr; +}; + struct ip32_parport_state { unsigned int dcr; unsigned int ecr; @@ -138,6 +142,7 @@ struct parport_state { /* ARC has no state. */ struct ax_parport_state ax; struct amiga_parport_state amiga; + struct ax88796_parport_state ax88796; /* Atari has not state. */ struct ip32_parport_state ip32; void *misc; |