=================================================================== RCS file: /cvs/funnyos/arch/testarm/dev/tacons.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- funnyos/arch/testarm/dev/tacons.c 2007/10/16 21:28:24 1.2 +++ funnyos/arch/testarm/dev/tacons.c 2007/10/16 21:35:30 1.3 @@ -1,5 +1,5 @@ /* - * $Id: tacons.c,v 1.2 2007/10/16 20:28:24 init Exp $ + * $Id: tacons.c,v 1.3 2007/10/16 20:35:30 init Exp $ */ #include #include @@ -29,7 +29,7 @@ tacons_attach(struct device *self, uint32_t loc, uint8_t flags) { struct tacons_dd *ddp = self->dv_devdata; - struct consoleops *cop = &ddp->td_consops; + struct fcons_handle *fhp = &ddp->td_consops; /* aquire bus handle from parent */ ddp->td_bhp = self->dv_parent->dv_aux; @@ -37,11 +37,11 @@ /* all reads/writes will use this addr; in testarm cons this is the same addr for getc/putc */ ddp->td_ioaddr = loc; - /* we export struct consoleops */ - cop->getc = tacons_getc; - cop->putc = tacons_putc; + /* we export struct fcons_handle */ + fhp->getc = tacons_getc; + fhp->putc = tacons_putc; - self->dv_aux = cop; + self->dv_aux = fhp; printf("testarm simple console (non-blocking, halt)\n");