svn commit: r198423 - head/sys/dev/fb

Jung-uk Kim jkim at FreeBSD.org
Fri Oct 23 19:02:54 UTC 2009


Author: jkim
Date: Fri Oct 23 19:02:53 2009
New Revision: 198423
URL: http://svn.freebsd.org/changeset/base/198423

Log:
  Remove a redundant byte swapping in the previous commit.

Modified:
  head/sys/dev/fb/vesa.c

Modified: head/sys/dev/fb/vesa.c
==============================================================================
--- head/sys/dev/fb/vesa.c	Fri Oct 23 18:57:52 2009	(r198422)
+++ head/sys/dev/fb/vesa.c	Fri Oct 23 19:02:53 2009	(r198423)
@@ -890,7 +890,6 @@ vesa_bios_init(void)
 		vmode.v_lfb = le32toh(vmode.v_lfb);
 		vmode.v_offscreen = le32toh(vmode.v_offscreen);
 		vmode.v_offscreensize = le16toh(vmode.v_offscreensize);
-		vmode.v_maxpixelclock = le32toh(vmode.v_maxpixelclock);
 		vmode.v_linbpscanline = le16toh(vmode.v_linbpscanline);
 		vmode.v_maxpixelclock = le32toh(vmode.v_maxpixelclock);
 


More information about the svn-src-all mailing list