svn commit: r268796 - head/sys/dev/vt/hw/fb

Nathan Whitehorn nwhitehorn at FreeBSD.org
Thu Jul 17 12:47:34 UTC 2014


Author: nwhitehorn
Date: Thu Jul 17 12:47:34 2014
New Revision: 268796
URL: http://svnweb.freebsd.org/changeset/base/268796

Log:
  Fix embarassing typos I made.
  
  Submitted by:	rayddteam

Modified:
  head/sys/dev/vt/hw/fb/vt_fb.c

Modified: head/sys/dev/vt/hw/fb/vt_fb.c
==============================================================================
--- head/sys/dev/vt/hw/fb/vt_fb.c	Thu Jul 17 11:38:37 2014	(r268795)
+++ head/sys/dev/vt/hw/fb/vt_fb.c	Thu Jul 17 12:47:34 2014	(r268796)
@@ -185,17 +185,17 @@ vt_fb_blank(struct vt_device *vd, term_c
 
 	switch (FBTYPE_GET_BYTESPP(info)) {
 	case 1:
-		for (h = 0; h < info->fb_stride; h++)
+		for (h = 0; h < info->fb_height; h++)
 			for (o = 0; o < info->fb_stride; o++)
 				info->wr1(info, h*info->fb_stride + o, c);
 		break;
 	case 2:
-		for (h = 0; h < info->fb_stride; h++)
+		for (h = 0; h < info->fb_height; h++)
 			for (o = 0; o < info->fb_stride; o += 2)
 				info->wr2(info, h*info->fb_stride + o, c);
 		break;
 	case 3:
-		for (h = 0; h < info->fb_stride; h++)
+		for (h = 0; h < info->fb_height; h++)
 			for (o = 0; o < info->fb_stride; o += 3) {
 				info->wr1(info, h*info->fb_stride + o,
 				    (c >> 16) & 0xff);
@@ -206,9 +206,9 @@ vt_fb_blank(struct vt_device *vd, term_c
 			}
 		break;
 	case 4:
-		for (h = 0; h < info->fb_stride; h++)
+		for (h = 0; h < info->fb_height; h++)
 			for (o = 0; o < info->fb_stride; o += 4)
-				info->wr4(info, o, c);
+				info->wr4(info, h*info->fb_stride + o, c);
 		break;
 	default:
 		/* panic? */


More information about the svn-src-head mailing list