diff options
Diffstat (limited to 'include/linux/parport.h')
-rw-r--r-- | include/linux/parport.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/parport.h b/include/linux/parport.h index 008d736a6c9a..5bf321e82c99 100644 --- a/include/linux/parport.h +++ b/include/linux/parport.h | |||
@@ -96,7 +96,6 @@ typedef enum { | |||
96 | /* The rest is for the kernel only */ | 96 | /* The rest is for the kernel only */ |
97 | #ifdef __KERNEL__ | 97 | #ifdef __KERNEL__ |
98 | 98 | ||
99 | #include <linux/config.h> | ||
100 | #include <linux/jiffies.h> | 99 | #include <linux/jiffies.h> |
101 | #include <linux/proc_fs.h> | 100 | #include <linux/proc_fs.h> |
102 | #include <linux/spinlock.h> | 101 | #include <linux/spinlock.h> |
@@ -128,6 +127,10 @@ struct amiga_parport_state { | |||
128 | unsigned char statusdir;/* ciab.ddrb & 7 */ | 127 | unsigned char statusdir;/* ciab.ddrb & 7 */ |
129 | }; | 128 | }; |
130 | 129 | ||
130 | struct ax88796_parport_state { | ||
131 | unsigned char cpr; | ||
132 | }; | ||
133 | |||
131 | struct ip32_parport_state { | 134 | struct ip32_parport_state { |
132 | unsigned int dcr; | 135 | unsigned int dcr; |
133 | unsigned int ecr; | 136 | unsigned int ecr; |
@@ -139,6 +142,7 @@ struct parport_state { | |||
139 | /* ARC has no state. */ | 142 | /* ARC has no state. */ |
140 | struct ax_parport_state ax; | 143 | struct ax_parport_state ax; |
141 | struct amiga_parport_state amiga; | 144 | struct amiga_parport_state amiga; |
145 | struct ax88796_parport_state ax88796; | ||
142 | /* Atari has not state. */ | 146 | /* Atari has not state. */ |
143 | struct ip32_parport_state ip32; | 147 | struct ip32_parport_state ip32; |
144 | void *misc; | 148 | void *misc; |