diff options
| author | KATO Takenori <kato@FreeBSD.org> | 1998-07-11 17:02:07 +0000 | 
|---|---|---|
| committer | KATO Takenori <kato@FreeBSD.org> | 1998-07-11 17:02:07 +0000 | 
| commit | 13992e6dc140f07478e1c50edbabed27916a2306 (patch) | |
| tree | 25abbb30e856b7654cad7ad9bf508eaee0525ab8 | |
| parent | 70e1187f6c264e3edb23a4e1a62cd41203a02ade (diff) | |
Notes
| -rw-r--r-- | sys/pc98/cbus/fdc.c | 8 | ||||
| -rw-r--r-- | sys/pc98/pc98/fd.c | 8 | 
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/pc98/cbus/fdc.c b/sys/pc98/cbus/fdc.c index 1e286586e546..5fed4861d876 100644 --- a/sys/pc98/cbus/fdc.c +++ b/sys/pc98/cbus/fdc.c @@ -43,7 +43,7 @@   * SUCH DAMAGE.   *   *	from:	@(#)fd.c	7.4 (Berkeley) 5/25/91 - *	$Id: fd.c,v 1.32 1998/06/08 08:55:43 kato Exp $ + *	$Id: fd.c,v 1.33 1998/07/06 10:09:37 kato Exp $   *   */ @@ -615,7 +615,7 @@ fd_read_status(fdc_p fdc, int fdsu)  	{  		/*  		 * XXX types are poorly chosen.  Only bytes can by read -		 * from the hardware, but fdc_status wants u_longs and +		 * from the hardware, but fdc->status[] wants u_ints and  		 * fd_in() gives ints.  		 */  		int status; @@ -2294,7 +2294,7 @@ fdstate(fdcu_t fdcu, fdc_p fdc)  	default:  		printf("fdc%d: Unexpected FD int->", fdcu);  		if (fd_read_status(fdc, fd->fdsu) == 0) -			printf("FDC status :%lx %lx %lx %lx %lx %lx %lx   ", +			printf("FDC status :%x %x %x %x %x %x %x   ",  			       fdc->status[0],  			       fdc->status[1],  			       fdc->status[2], @@ -2372,7 +2372,7 @@ retrier(fdcu)  			if (fdc->flags & FDC_STAT_VALID)  			{  				printf( -			" (ST0 %b ST1 %b ST2 %b cyl %ld hd %ld sec %ld)\n", +			" (ST0 %b ST1 %b ST2 %b cyl %u hd %u sec %u)\n",  				       fdc->status[0], NE7_ST0BITS,  				       fdc->status[1], NE7_ST1BITS,  				       fdc->status[2], NE7_ST2BITS, diff --git a/sys/pc98/pc98/fd.c b/sys/pc98/pc98/fd.c index 1e286586e546..5fed4861d876 100644 --- a/sys/pc98/pc98/fd.c +++ b/sys/pc98/pc98/fd.c @@ -43,7 +43,7 @@   * SUCH DAMAGE.   *   *	from:	@(#)fd.c	7.4 (Berkeley) 5/25/91 - *	$Id: fd.c,v 1.32 1998/06/08 08:55:43 kato Exp $ + *	$Id: fd.c,v 1.33 1998/07/06 10:09:37 kato Exp $   *   */ @@ -615,7 +615,7 @@ fd_read_status(fdc_p fdc, int fdsu)  	{  		/*  		 * XXX types are poorly chosen.  Only bytes can by read -		 * from the hardware, but fdc_status wants u_longs and +		 * from the hardware, but fdc->status[] wants u_ints and  		 * fd_in() gives ints.  		 */  		int status; @@ -2294,7 +2294,7 @@ fdstate(fdcu_t fdcu, fdc_p fdc)  	default:  		printf("fdc%d: Unexpected FD int->", fdcu);  		if (fd_read_status(fdc, fd->fdsu) == 0) -			printf("FDC status :%lx %lx %lx %lx %lx %lx %lx   ", +			printf("FDC status :%x %x %x %x %x %x %x   ",  			       fdc->status[0],  			       fdc->status[1],  			       fdc->status[2], @@ -2372,7 +2372,7 @@ retrier(fdcu)  			if (fdc->flags & FDC_STAT_VALID)  			{  				printf( -			" (ST0 %b ST1 %b ST2 %b cyl %ld hd %ld sec %ld)\n", +			" (ST0 %b ST1 %b ST2 %b cyl %u hd %u sec %u)\n",  				       fdc->status[0], NE7_ST0BITS,  				       fdc->status[1], NE7_ST1BITS,  				       fdc->status[2], NE7_ST2BITS,  | 
