From owner-svn-src-head@freebsd.org Sun Dec 20 02:46:53 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47B02A14326; Sun, 20 Dec 2015 02:46:53 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 148141468; Sun, 20 Dec 2015 02:46:53 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBK2kqLm051268; Sun, 20 Dec 2015 02:46:52 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBK2kqjY051267; Sun, 20 Dec 2015 02:46:52 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201512200246.tBK2kqjY051267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 20 Dec 2015 02:46:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292486 - head/sys/boot/i386/libi386 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 02:46:53 -0000 Author: ngie Date: Sun Dec 20 02:46:51 2015 New Revision: 292486 URL: https://svnweb.freebsd.org/changeset/base/292486 Log: Add missing smbios.h #include to mute a -Wimplicit-function-declaration warning after r279222 Reported by: Jenkins Sponsored by: EMC / Isilon Storage Division Modified: head/sys/boot/i386/libi386/biosmem.c Modified: head/sys/boot/i386/libi386/biosmem.c ============================================================================== --- head/sys/boot/i386/libi386/biosmem.c Sun Dec 20 02:36:30 2015 (r292485) +++ head/sys/boot/i386/libi386/biosmem.c Sun Dec 20 02:46:51 2015 (r292486) @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include "bootstrap.h" #include "libi386.h" #include "btxv86.h" +#include "smbios.h" vm_offset_t memtop, memtop_copyin, high_heap_base; uint32_t bios_basemem, bios_extmem, high_heap_size;