=================================================================== RCS file: /cvs/funnyos/arch/sam7s64/config.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- funnyos/arch/sam7s64/config.c 2007/11/15 20:50:48 1.7 +++ funnyos/arch/sam7s64/config.c 2007/11/19 10:53:57 1.8 @@ -1,5 +1,5 @@ /* - * $Id: config.c,v 1.7 2007/11/15 20:50:48 nbrk Exp $ + * $Id: config.c,v 1.8 2007/11/19 10:53:57 nbrk Exp $ */ #include #include @@ -19,6 +19,7 @@ extern struct driver cpu_dr; extern struct driver saapbus_dr; extern struct driver sapio_dr; +extern struct driver gpioled_dr; extern void(*putchar)(char); @@ -35,6 +36,8 @@ { "cpu" , "root", 0, 0, 0, 0 }, { "saapbus","root", 0, 0, 0, 0 }, { "sapio", "saapbus", 0, 0, 0, 0 }, + { "gpioled","sapio", 0, 17, 0, 0 }, + { "gpioled","sapio", 0, 18, 0, 0 }, { NULL, NULL, 0, 0, 0, 0 } }; @@ -48,6 +51,7 @@ { "cpu" , &cpu_dr, -1 }, { "saapbus" , &saapbus_dr, -1 }, { "sapio", &sapio_dr, -1 }, + { "gpioled", &gpioled_dr, -1 }, { NULL, NULL, 0 } };