From owner-svn-src-all@freebsd.org Mon Feb 22 09:04:39 2016 Return-Path: Delivered-To: svn-src-all@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 92239AAF1F8; Mon, 22 Feb 2016 09:04:39 +0000 (UTC) (envelope-from skra@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 6A1CD14EA; Mon, 22 Feb 2016 09:04:39 +0000 (UTC) (envelope-from skra@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1M94c0u088572; Mon, 22 Feb 2016 09:04:38 GMT (envelope-from skra@FreeBSD.org) Received: (from skra@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1M94bWQ088559; Mon, 22 Feb 2016 09:04:37 GMT (envelope-from skra@FreeBSD.org) Message-Id: <201602220904.u1M94bWQ088559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skra set sender to skra@FreeBSD.org using -f From: Svatopluk Kraus Date: Mon, 22 Feb 2016 09:04:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r295881 - in head: lib/libvmmapi share/man/man9 sys/arm/arm sys/arm64/arm64 sys/dev/drm sys/dev/drm2 sys/mips/mips sys/mips/nlm sys/mips/nlm/dev/net sys/mips/rmi sys/mips/rmi/dev/nlge X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2016 09:04:39 -0000 Author: skra Date: Mon Feb 22 09:04:36 2016 New Revision: 295881 URL: https://svnweb.freebsd.org/changeset/base/295881 Log: As is included from , there is no need to include it explicitly when is already included. Reviewed by: alc, kib Differential Revision: https://reviews.freebsd.org/D5378 Modified: head/lib/libvmmapi/vmmapi.c head/share/man/man9/bios.9 head/sys/arm/arm/debug_monitor.c head/sys/arm64/arm64/debug_monitor.c head/sys/dev/drm/drmP.h head/sys/dev/drm2/drmP.h head/sys/mips/mips/stack_machdep.c head/sys/mips/nlm/cms.c head/sys/mips/nlm/dev/net/xlpge.c head/sys/mips/rmi/dev/nlge/if_nlge.c head/sys/mips/rmi/fmn.c head/sys/mips/rmi/iodi.c Modified: head/lib/libvmmapi/vmmapi.c ============================================================================== --- head/lib/libvmmapi/vmmapi.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/lib/libvmmapi/vmmapi.c Mon Feb 22 09:04:36 2016 (r295881) @@ -38,7 +38,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include Modified: head/share/man/man9/bios.9 ============================================================================== --- head/share/man/man9/bios.9 Mon Feb 22 09:02:20 2016 (r295880) +++ head/share/man/man9/bios.9 Mon Feb 22 09:04:36 2016 (r295881) @@ -37,7 +37,6 @@ .In sys/param.h .In vm/vm.h .In vm/pmap.h -.In machine/param.h .In machine/pc/bios.h .Ft uint32_t .Fn bios_sigsearch "uint32_t start" "u_char *sig" "int siglen" "int paralen" "int sigofs" Modified: head/sys/arm/arm/debug_monitor.c ============================================================================== --- head/sys/arm/arm/debug_monitor.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/arm/arm/debug_monitor.c Mon Feb 22 09:04:36 2016 (r295881) @@ -43,7 +43,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: head/sys/arm64/arm64/debug_monitor.c ============================================================================== --- head/sys/arm64/arm64/debug_monitor.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/arm64/arm64/debug_monitor.c Mon Feb 22 09:04:36 2016 (r295881) @@ -40,7 +40,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: head/sys/dev/drm/drmP.h ============================================================================== --- head/sys/dev/drm/drmP.h Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/dev/drm/drmP.h Mon Feb 22 09:04:36 2016 (r295881) @@ -75,7 +75,6 @@ struct drm_file; #include #include #include -#include #include #include #if defined(__i386__) || defined(__amd64__) Modified: head/sys/dev/drm2/drmP.h ============================================================================== --- head/sys/dev/drm2/drmP.h Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/dev/drm2/drmP.h Mon Feb 22 09:04:36 2016 (r295881) @@ -76,7 +76,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include #if defined(__i386__) || defined(__amd64__) Modified: head/sys/mips/mips/stack_machdep.c ============================================================================== --- head/sys/mips/mips/stack_machdep.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/mips/stack_machdep.c Mon Feb 22 09:04:36 2016 (r295881) @@ -35,7 +35,6 @@ __FBSDID("$FreeBSD$"); #include -#include #include #include Modified: head/sys/mips/nlm/cms.c ============================================================================== --- head/sys/mips/nlm/cms.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/nlm/cms.c Mon Feb 22 09:04:36 2016 (r295881) @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: head/sys/mips/nlm/dev/net/xlpge.c ============================================================================== --- head/sys/mips/nlm/dev/net/xlpge.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/nlm/dev/net/xlpge.c Mon Feb 22 09:04:36 2016 (r295881) @@ -72,7 +72,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include /* for DELAY */ #include Modified: head/sys/mips/rmi/dev/nlge/if_nlge.c ============================================================================== --- head/sys/mips/rmi/dev/nlge/if_nlge.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/rmi/dev/nlge/if_nlge.c Mon Feb 22 09:04:36 2016 (r295881) @@ -94,7 +94,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include /* for DELAY */ #include Modified: head/sys/mips/rmi/fmn.c ============================================================================== --- head/sys/mips/rmi/fmn.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/rmi/fmn.c Mon Feb 22 09:04:36 2016 (r295881) @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include #include Modified: head/sys/mips/rmi/iodi.c ============================================================================== --- head/sys/mips/rmi/iodi.c Mon Feb 22 09:02:20 2016 (r295880) +++ head/sys/mips/rmi/iodi.c Mon Feb 22 09:04:36 2016 (r295881) @@ -48,7 +48,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include /* for DELAY */ #include