Subversion Repositories HelenOS

Rev

Rev 4346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4346 Rev 4347
Line 112... Line 112...
112
    ioport8_t data_a;
112
    ioport8_t data_a;
113
} __attribute__ ((packed)) z8530_t;
113
} __attribute__ ((packed)) z8530_t;
114
 
114
 
115
/** Structure representing the z8530 device. */
115
/** Structure representing the z8530 device. */
116
typedef struct {
116
typedef struct {
117
    devno_t devno;
-
 
118
    irq_t irq;
117
    irq_t irq;
119
    z8530_t *z8530;
118
    z8530_t *z8530;
120
    indev_t kbrdin;
119
    indev_t kbrdin;
121
} z8530_instance_t;
120
} z8530_instance_t;
122
 
121
 
123
extern indev_t *z8530_init(z8530_t *, devno_t, inr_t, cir_t, void *);
122
extern indev_t *z8530_init(z8530_t *, inr_t, cir_t, void *);
124
 
123
 
125
#endif
124
#endif
126
 
125
 
127
/** @}
126
/** @}
128
 */
127
 */