Subversion Repositories HelenOS

Rev

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

Rev 3934 Rev 3938
Line 63... Line 63...
63
 
63
 
64
/** Structure representing the ns16550 device. */
64
/** Structure representing the ns16550 device. */
65
typedef struct ns16550_instance {
65
typedef struct ns16550_instance {
66
    devno_t devno;
66
    devno_t devno;
67
    ns16550_t *ns16550;
67
    ns16550_t *ns16550;
68
    irq_t *irq;
68
    irq_t irq;
69
} ns16550_instance_t;
69
} ns16550_instance_t;
70
 
70
 
71
extern bool ns16550_init(ns16550_t *, devno_t, inr_t, cir_t, void *);
71
extern bool ns16550_init(ns16550_t *, devno_t, inr_t, cir_t, void *);
72
extern void ns16550_grab(void);
72
extern void ns16550_grab(void);
73
extern void ns16550_release(void);
73
extern void ns16550_release(void);