Remove printing of variable "reselect" which is not really maintained

by the NCR driver.

Fix use of "regtime" which became an int (had been a time_t).

Submitted by:	bde
This commit is contained in:
Stefan Eßer 1998-07-12 20:30:11 +00:00
parent e275daef22
commit 8808ae1353

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: ncrcontrol.c,v 1.19 1997/10/02 11:46:53 charnier Exp $
** $Id: ncrcontrol.c,v 1.20 1998/03/30 10:09:05 phk Exp $
**
** Utility for NCR 53C810 device driver.
**
@ -973,7 +973,6 @@ void dump_tstamp (const char* name, struct tstamp * p)
P ("data ", data);
P ("status ", status);
P ("disconnected", disconnect);
P ("reselected ", reselect);
printf ("\n");
}
@ -1334,8 +1333,8 @@ static void dump_ncr (void)
printf (" lasttime: %s", ctime ((time_t*)&ncr.lasttime));
printf ("\n");
if (wizard && strchr (debug_opt, 'd') && ncr.regtime.tv_sec) {
printf (" regdump: %s", ctime (&ncr.regtime.tv_sec));
if (wizard && strchr (debug_opt, 'd') && ncr.regtime) {
printf (" regdump: %s", ctime (&ncr.regtime));
dump_reg (&ncr.regdump);
};