Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Oct 2009 19:02:53 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r198423 - head/sys/dev/fb
Message-ID:  <200910231902.n9NJ2rSY069624@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910231902.n9NJ2rSY069624>