From owner-cvs-all@FreeBSD.ORG Sat Jun 16 21:31:53 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 705B316A46B; Sat, 16 Jun 2007 21:31:53 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5F74113C46A; Sat, 16 Jun 2007 21:31:53 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5GLVrcu091810; Sat, 16 Jun 2007 21:31:53 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5GLVrpO091806; Sat, 16 Jun 2007 21:31:53 GMT (envelope-from marius) Message-Id: <200706162131.l5GLVrpO091806@repoman.freebsd.org> From: Marius Strobl Date: Sat, 16 Jun 2007 21:31:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/fb boot_font.c gfb.h src/sys/i386/xbox xboxfb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2007 21:31:53 -0000 marius 2007-06-16 21:31:53 UTC FreeBSD src repository Modified files: sys/dev/fb boot_font.c gfb.h sys/i386/xbox xboxfb.c Log: - Define data of struct gfb_font a const as it's only used to supply font data and remove the array size from the definition as f.e. the gallant 12 x 22 font data is 256 * 44 in size, exceeding the previously hard- coded size. - Declare the bold8x16 instance of struct gfb_font as const as it's not intended to be changed at run-time as a whole either. - Use __FBSDID in xboxfb.c Tested by: rink Revision Changes Path 1.9 +1 -1 src/sys/dev/fb/boot_font.c 1.5 +1 -1 src/sys/dev/fb/gfb.h 1.5 +6 -5 src/sys/i386/xbox/xboxfb.c