[BACK]Return to config_table.c CVS log [TXT][DIR] Up to [local] / prex-old / dev / arm / cats

Annotation of prex-old/dev/arm/cats/config_table.c, Revision 1.1

1.1     ! nbrk        1: /*
        !             2:  * $Id$
        !             3:  */
        !             4: /*
        !             5:  * ARM/CATS, where to attach each device.
        !             6:  */
        !             7: #include <driver.h>
        !             8:
        !             9: /* device drivers */
        !            10: extern struct driver   root_drv;
        !            11: extern struct driver   hostio_drv;
        !            12: extern struct driver   footbridge_drv;
        !            13: extern struct driver   fuart_drv;
        !            14: extern struct driver   com_drv;
        !            15:
        !            16: struct driver  *drivers[] = {
        !            17:        &root_drv,
        !            18:        &hostio_drv,
        !            19:        &footbridge_drv,
        !            20:        &fuart_drv,
        !            21:        &com_drv,
        !            22:        NULL
        !            23: };
        !            24:
        !            25: struct attachment      config_table[] = {
        !            26:        /* chname, paname, paunit, hename, flags */
        !            27:        { "hostio", "root", 0, NULL, 0 },
        !            28:        { "footbridge", "hostio", 0, NULL, 0 },
        !            29:        { "fuart", "footbridge", 0, NULL, 0 },
        !            30:        { "com",  "fuart", -1, NULL, 0},
        !            31:
        !            32:        { NULL, NULL, -1, NULL, 0}
        !            33: };

CVSweb