Rev 4156 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4156 | Rev 4420 | ||
---|---|---|---|
Line 114... | Line 114... | ||
114 | 114 | ||
115 | /** Structure representing the z8530 device. */ |
115 | /** Structure representing the z8530 device. */ |
116 | typedef struct { |
116 | typedef struct { |
117 | irq_t irq; |
117 | irq_t irq; |
118 | z8530_t *z8530; |
118 | z8530_t *z8530; |
119 | indev_t kbrdin; |
119 | indev_t *kbrdin; |
120 | } z8530_instance_t; |
120 | } z8530_instance_t; |
121 | 121 | ||
122 | extern indev_t *z8530_init(z8530_t *, inr_t, cir_t, void *); |
122 | extern z8530_instance_t *z8530_init(z8530_t *, inr_t, cir_t, void *); |
- | 123 | extern void z8530_wire(z8530_instance_t *, indev_t *); |
|
123 | 124 | ||
124 | #endif |
125 | #endif |
125 | 126 | ||
126 | /** @} |
127 | /** @} |
127 | */ |
128 | */ |