Ignore:
Timestamp:
2009-04-21T12:46:26Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f2d2c7ba
Parents:
44b7783
Message:

change the way how input devices are wired together according to ticket #44
(also the proposal http://lists.modry.cz/cgi-bin/private/helenos-devel/2009-March/002507.html)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/include/drivers/ns16550/ns16550.h

    r44b7783 rc2417bc  
    6363/** Structure representing the ns16550 device. */
    6464typedef struct {
     65        irq_t irq;
    6566        ns16550_t *ns16550;
    66         irq_t irq;
    67         indev_t kbrdin;
     67        indev_t *kbrdin;
    6868} ns16550_instance_t;
    6969
    70 extern indev_t *ns16550_init(ns16550_t *, inr_t, cir_t, void *);
     70extern ns16550_instance_t *ns16550_init(ns16550_t *, inr_t, cir_t, void *);
     71extern void ns16550_wire(ns16550_instance_t *, indev_t *);
    7172
    7273#endif
Note: See TracChangeset for help on using the changeset viewer.