diff --git a/sys/arch/acorn26/ioc/arcpp.c b/sys/arch/acorn26/ioc/arcpp.c index 99ebf89e0ef5..e6f6d15e1266 100644 --- a/sys/arch/acorn26/ioc/arcpp.c +++ b/sys/arch/acorn26/ioc/arcpp.c @@ -1,4 +1,4 @@ -/* $NetBSD: arcpp.c,v 1.6 2002/10/23 09:10:26 jdolecek Exp $ */ +/* $NetBSD: arcpp.c,v 1.7 2006/02/12 10:30:30 bjh21 Exp $ */ /*- * Copyright (c) 2001 Ben Harris @@ -52,7 +52,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.6 2002/10/23 09:10:26 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.7 2006/02/12 10:30:30 bjh21 Exp $"); #include #include @@ -172,7 +172,7 @@ arcpp_attach(struct device *parent, struct device *self, void *aux) * Wait until the printer's selected and not busy. */ int -arcppopen(dev_t dev, int flag, int mode, struct proc *p) +arcppopen(dev_t dev, int flag, int mode, struct lwp *l) { u_char flags = ARCPPFLAGS(dev); struct arcpp_softc *sc; @@ -227,7 +227,7 @@ arcppopen(dev_t dev, int flag, int mode, struct proc *p) * Close the device, and free the local line buffer. */ int -arcppclose(dev_t dev, int flag, int mode, struct proc *p) +arcppclose(dev_t dev, int flag, int mode, struct lwp *l) { struct arcpp_softc *sc = device_lookup(&arcpp_cd, ARCPPUNIT(dev));