From patchwork Tue Feb 23 14:18:30 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 8393071 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 37BD8C0553 for ; Tue, 23 Feb 2016 14:42:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9D0C6202FE for ; Tue, 23 Feb 2016 14:42:21 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id ECC26202F0 for ; Tue, 23 Feb 2016 14:42:20 +0000 (UTC) Received: from localhost ([::1]:57583 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYEAO-0004Xc-DB for patchwork-qemu-devel@patchwork.kernel.org; Tue, 23 Feb 2016 09:42:20 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35524) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYE4F-0002ZC-MR for qemu-devel@nongnu.org; Tue, 23 Feb 2016 09:36:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYE4E-0004ln-Ti for qemu-devel@nongnu.org; Tue, 23 Feb 2016 09:35:59 -0500 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:55924) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYE4E-0004lH-MI for qemu-devel@nongnu.org; Tue, 23 Feb 2016 09:35:58 -0500 Received: from pm215 by orth.archaic.org.uk with local (Exim 4.84) (envelope-from ) id 1aYDnQ-0001pd-6W; Tue, 23 Feb 2016 14:18:36 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 23 Feb 2016 14:18:30 +0000 Message-Id: <1456237112-32662-3-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1456237112-32662-1-git-send-email-peter.maydell@linaro.org> References: <1456237112-32662-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:8b0:1d0::2 Cc: patches@linaro.org Subject: [Qemu-devel] [PATCH 2/4] include/config.h: Remove X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP include/config.h just includes config-target.h (and used to also include config-host.h). It is now obsolete and unused, because osdep.h does this job, so remove it. Signed-off-by: Peter Maydell --- include/config.h | 1 - scripts/clean-includes | 1 - 2 files changed, 2 deletions(-) delete mode 100644 include/config.h diff --git a/include/config.h b/include/config.h deleted file mode 100644 index 992d761..0000000 --- a/include/config.h +++ /dev/null @@ -1 +0,0 @@ -#include "config-target.h" diff --git a/scripts/clean-includes b/scripts/clean-includes index d2dd7ae..8a3f398 100755 --- a/scripts/clean-includes +++ b/scripts/clean-includes @@ -99,7 +99,6 @@ for f in "$@"; do ;; *include/qemu/osdep.h | \ *include/qemu/compiler.h | \ - *include/config.h | \ *include/standard-headers/ ) # Removing include lines from osdep.h itself would be counterproductive. echo "SKIPPING $f (special case header)"