>From: chmr@edvz.tu-graz.ac.at (Christoph Robitschko)

Date: Tue, 28 Sep 1993 09:03:13 +0100 (MET)
The only place I found with a printf("status %x") is in /sys/i386/isa/lpt.c,
and looks much like a left-over debugging printout...

And it was... I changed it to an lprintf (which is defined if debuggin is on)
			Rod
This commit is contained in:
Rodney W. Grimes 1993-09-28 17:02:34 +00:00
parent fae56ff15f
commit 5487793b4b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=513

View File

@ -290,7 +290,7 @@ lprintf("lp flags 0x%x\n", sc->sc_flags);
if (trys++ >= LPINITRDY*4) {
splx(s);
sc->sc_state = 0;
printf ("status %x\n", inb(port+lpt_status) );
lprintf ("status %x\n", inb(port+lpt_status) );
return (EBUSY);
}