Fix bad function calls discovered after prototype fixes in last commit.

This commit is contained in:
tron 2000-03-19 19:14:42 +00:00
parent 0c2cdb98d9
commit 6c390b4142
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: scr.c,v 1.7 2000/03/16 23:21:09 darrenr Exp $ */ /* $NetBSD: scr.c,v 1.8 2000/03/19 19:14:42 tron Exp $ */
/* /*
* Copyright 1997 * Copyright 1997
@ -783,7 +783,7 @@ void scrattach(parent, self, aux)
KERN_DEBUG (scrdebug, SCRATTACH_DEBUG_INFO,("scrattach: called \n")); KERN_DEBUG (scrdebug, SCRATTACH_DEBUG_INFO,("scrattach: called \n"));
/* set initial state machine values */ /* set initial state machine values */
scrClkInit(sc); scrClkInit();
initStates(sc); initStates(sc);
sc->open = FALSE; sc->open = FALSE;
} }
@ -980,7 +980,7 @@ int scrclose(dev, flag, mode, p)
if (sc->open) if (sc->open)
{ {
/* put everything in the idle state */ /* put everything in the idle state */
scrClkInit(sc); scrClkInit();
initStates(sc); initStates(sc);
sc->open = FALSE; sc->open = FALSE;