From patchwork Fri Feb 12 17:56:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Shi X-Patchwork-Id: 61883 Delivered-To: patch@linaro.org Received: by 10.112.43.199 with SMTP id y7csp983837lbl; Fri, 12 Feb 2016 10:19:31 -0800 (PST) X-Received: by 10.66.120.200 with SMTP id le8mr4122690pab.61.1455301171744; Fri, 12 Feb 2016 10:19:31 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b90si21357500pfj.165.2016.02.12.10.19.31; Fri, 12 Feb 2016 10:19:31 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dkim=pass header.i=@linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752564AbcBLST2 (ORCPT + 30 others); Fri, 12 Feb 2016 13:19:28 -0500 Received: from mail-pf0-f179.google.com ([209.85.192.179]:34752 "EHLO mail-pf0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752535AbcBLST0 (ORCPT ); Fri, 12 Feb 2016 13:19:26 -0500 Received: by mail-pf0-f179.google.com with SMTP id x65so51198026pfb.1 for ; Fri, 12 Feb 2016 10:19:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=mEITFoZZ7eqecnyX9KtpoukRKB4ObMYl+v+bR+SqOiA=; b=grDAhYGXMzNjOJ3mOPTDZcCwib6CpdFN3LWs2o5lEA5NdRsdK2VRqQ/v9Eng5bek02 zKBZqY9mZovKoyB6yw5fPVuL+nL9+z/GM2QkT8w8a5EEIm2WiIa9iFXVJhTRhk9bsbZY lf59ENjSQXFwmupdjbBCZAXbO4lmUlNkVJxPA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=mEITFoZZ7eqecnyX9KtpoukRKB4ObMYl+v+bR+SqOiA=; b=VBK3nLPkux45CFHgSd+9rwpIlvaIzzjh4v5p5UpK+K0mKgYkm4kvklkg8ykhEI4+v6 B0TCwAHqiToaYIS9K+6jOCbs/KqIyCN609OpEqBEbTX9fYs08fSgdadvW0mB1ev0kyM0 ilrXDvSyVdrlAaF8To03p+Mh8M6+JBlV41ypG6X7GK9okeI3v+9RXMBW5Ej+ttfXNy42 L9JwKHipSm0rUiexiBOEVmiuPahch70lezMadXSocNaMGVsAnFc5KK/fNKxviyyZj+ir cZngFmHrcf/asjd1ILw6WaUiMsUZxeeFdXYLai0EEWRUz2YvVABUQPz4S9zVTRfXr8ur +K+w== X-Gm-Message-State: AG10YOSNSezvkOz2SBuHrWvSdNFoCeogn5okzRhmhWigh/uwB+Ly9igCXWskDqHNxM8kY5d8 X-Received: by 10.98.19.22 with SMTP id b22mr4172414pfj.17.1455301165771; Fri, 12 Feb 2016 10:19:25 -0800 (PST) Received: from yshi-Precision-T5600.corp.ad.wrs.com (unknown-216-82.windriver.com. [147.11.216.82]) by smtp.gmail.com with ESMTPSA id r68sm20978350pfb.51.2016.02.12.10.19.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 12 Feb 2016 10:19:25 -0800 (PST) From: Yang Shi To: will.deacon@arm.com, catalin.marinas@arm.com Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linaro-kernel@lists.linaro.org, yang.shi@linaro.org Subject: [PATCH] arm64: remove redundant preempt.h Date: Fri, 12 Feb 2016 09:56:43 -0800 Message-Id: <1455299803-317-1-git-send-email-yang.shi@linaro.org> X-Mailer: git-send-email 2.0.2 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org preempt.h has been included by sched.h, so it is not necessary to include both, just keep sched.h. Signed-off-by: Yang Shi --- Happened to find this when checking preempt.h include for another patch review. Build test is passed with and without CONFIG_PREEMPT enabled. arch/arm64/kernel/cpuinfo.c | 1 - 1 file changed, 1 deletion(-) -- 2.0.2 diff --git a/arch/arm64/kernel/cpuinfo.c b/arch/arm64/kernel/cpuinfo.c index 212ae63..e2b37ff 100644 --- a/arch/arm64/kernel/cpuinfo.c +++ b/arch/arm64/kernel/cpuinfo.c @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include