From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A43DAC433E0 for ; Thu, 6 Aug 2020 18:37:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E5A5B22CAF for ; Thu, 6 Aug 2020 18:37:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596739073; bh=Pet8usq6vLkfnEHsRK3Hoaw0sEG6UxMvBQ2LZDWxbX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=H6ulcg1FJxGi+XFvxaBncsS2wjKknz2vo4OnuA8H4mj07rGMNTnrZY+Mc1nj1Gfs8 o9wx6ut9O+8nG4XsXgWRTM76/kwE8zOHzSfTZ0p3t0SRRFJcUXYjosIILm8bEVBEar Z4ewNKyLnHpNoGM3QU4AtqvBpk5sr7bqKUlFcr/I= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729707AbgHFShu (ORCPT ); Thu, 6 Aug 2020 14:37:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:58934 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728923AbgHFSf6 (ORCPT ); Thu, 6 Aug 2020 14:35:58 -0400 Received: from localhost.localdomain (unknown [194.230.155.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id F05C022DFB; Thu, 6 Aug 2020 18:23:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596738235; bh=Pet8usq6vLkfnEHsRK3Hoaw0sEG6UxMvBQ2LZDWxbX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sNZ8uaLTB8z7OBL1r9fze2clYnyHVuQpkCzQwikVT/fhc1Ss3R/g6hspvDb7cpf9y qza6LVvffD+IIkKD/ln2C6v98BLiFwTmWArYvzgWGIvHQuPkep+8qYJipkEKsv0xtl ISl0iwwBcUvI8aq3AX1ourJu7enNTENDFoOTmIEM= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Cc: Arnd Bergmann , Krzysztof Kozlowski , Russell King , linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 30/41] ARM: s3c24xx: include mach/irqs.h where needed Date: Thu, 6 Aug 2020 20:20:47 +0200 Message-Id: <20200806182059.2431-30-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200806181932.2253-1-krzk@kernel.org> References: <20200806181932.2253-1-krzk@kernel.org> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Arnd Bergmann Preparing for a later conversion to sparse IRQs, this ensures that the mach/irqs.h header is still visible in files that reference an IRQ number. Signed-off-by: Arnd Bergmann Signed-off-by: Krzysztof Kozlowski --- arch/arm/mach-s3c24xx/bast-ide.c | 1 + arch/arm/mach-s3c24xx/bast-irq.c | 1 + arch/arm/mach-s3c24xx/common.h | 1 + arch/arm/mach-s3c24xx/irq-s3c24xx.c | 1 + arch/arm/mach-s3c24xx/pm-s3c2412.c | 1 + arch/arm/mach-s3c24xx/s3c2443.c | 1 + arch/arm/mach-s3c24xx/simtec-usb.c | 1 + 7 files changed, 7 insertions(+) diff --git a/arch/arm/mach-s3c24xx/bast-ide.c b/arch/arm/mach-s3c24xx/bast-ide.c index 067944398f46..ee6fbb407640 100644 --- a/arch/arm/mach-s3c24xx/bast-ide.c +++ b/arch/arm/mach-s3c24xx/bast-ide.c @@ -20,6 +20,7 @@ #include #include +#include #include "bast.h" diff --git a/arch/arm/mach-s3c24xx/bast-irq.c b/arch/arm/mach-s3c24xx/bast-irq.c index 03209fefa5db..a6db5e2c910c 100644 --- a/arch/arm/mach-s3c24xx/bast-irq.c +++ b/arch/arm/mach-s3c24xx/bast-irq.c @@ -16,6 +16,7 @@ #include #include +#include #include "bast.h" diff --git a/arch/arm/mach-s3c24xx/common.h b/arch/arm/mach-s3c24xx/common.h index 8d2e2c6ae7eb..86826cafa15d 100644 --- a/arch/arm/mach-s3c24xx/common.h +++ b/arch/arm/mach-s3c24xx/common.h @@ -10,6 +10,7 @@ #define __ARCH_ARM_MACH_S3C24XX_COMMON_H __FILE__ #include +#include struct s3c2410_uartcfg; diff --git a/arch/arm/mach-s3c24xx/irq-s3c24xx.c b/arch/arm/mach-s3c24xx/irq-s3c24xx.c index d2031fecc386..b0e879ee14c1 100644 --- a/arch/arm/mach-s3c24xx/irq-s3c24xx.c +++ b/arch/arm/mach-s3c24xx/irq-s3c24xx.c @@ -25,6 +25,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/pm-s3c2412.c b/arch/arm/mach-s3c24xx/pm-s3c2412.c index b1d0ad07301b..2779d67d2c07 100644 --- a/arch/arm/mach-s3c24xx/pm-s3c2412.c +++ b/arch/arm/mach-s3c24xx/pm-s3c2412.c @@ -19,6 +19,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/s3c2443.c b/arch/arm/mach-s3c24xx/s3c2443.c index c278cfc10ba5..3c05d04bbbeb 100644 --- a/arch/arm/mach-s3c24xx/s3c2443.c +++ b/arch/arm/mach-s3c24xx/s3c2443.c @@ -25,6 +25,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/simtec-usb.c b/arch/arm/mach-s3c24xx/simtec-usb.c index 3488988316a8..693a2a9a7349 100644 --- a/arch/arm/mach-s3c24xx/simtec-usb.c +++ b/arch/arm/mach-s3c24xx/simtec-usb.c @@ -24,6 +24,7 @@ #include #include +#include #include #include -- 2.17.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2B368C433E0 for ; Thu, 6 Aug 2020 18:31:34 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5264B2310F for ; Thu, 6 Aug 2020 18:31:34 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="poh4iGmk"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="sNZ8uaLT" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5264B2310F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:MIME-Version:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:References:In-Reply-To:Message-Id:Date:Subject:To: From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=cLEXqsWsnFpoGBtyemuLLbsHrK4VgehX8bXLbLZg8+4=; b=poh4iGmktBn4Aluho+cJoI69FW yjrRmIU2QA7JXUHmskHk2Z5R11mXTpf+2fkLBKSwJ9MsMcO7kNTY9nd2UVDH8MugHDf5+EhxShkTy PUdRZLyqBuuAR71EloK1/5ckhuDdHouGePpJlHx3E2YWUlg9Nb4iO+UD6FqyasUpvnCYQKuwfTXq8 XGpLml6sYklvkwIe2CcYo5PHU+2D+SQ1UF3gtkgOpcjvxkGxjb2cwmPYxtrNuys1HR9lG+yZiLkPZ nHQoE23qGLtzu4RUoCj2zJNFgcRZsHss+N7MijD6fm5y7ne6c9V23rwfLtJjh6/ECBD7YxrdmDoCe SF9YdnZg==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1k3ke0-0000Lq-97; Thu, 06 Aug 2020 18:29:36 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1k3kYV-0000jx-IF for linux-arm-kernel@lists.infradead.org; Thu, 06 Aug 2020 18:23:57 +0000 Received: from localhost.localdomain (unknown [194.230.155.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id F05C022DFB; Thu, 6 Aug 2020 18:23:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596738235; bh=Pet8usq6vLkfnEHsRK3Hoaw0sEG6UxMvBQ2LZDWxbX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sNZ8uaLTB8z7OBL1r9fze2clYnyHVuQpkCzQwikVT/fhc1Ss3R/g6hspvDb7cpf9y qza6LVvffD+IIkKD/ln2C6v98BLiFwTmWArYvzgWGIvHQuPkep+8qYJipkEKsv0xtl ISl0iwwBcUvI8aq3AX1ourJu7enNTENDFoOTmIEM= From: Krzysztof Kozlowski To: linux-kernel@vger.kernel.org Subject: [PATCH v2 30/41] ARM: s3c24xx: include mach/irqs.h where needed Date: Thu, 6 Aug 2020 20:20:47 +0200 Message-Id: <20200806182059.2431-30-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200806181932.2253-1-krzk@kernel.org> References: <20200806181932.2253-1-krzk@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200806_142356_285392_7A92B0A3 X-CRM114-Status: GOOD ( 15.03 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-arm-kernel@lists.infradead.org, Krzysztof Kozlowski , Arnd Bergmann , Russell King MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Arnd Bergmann Preparing for a later conversion to sparse IRQs, this ensures that the mach/irqs.h header is still visible in files that reference an IRQ number. Signed-off-by: Arnd Bergmann Signed-off-by: Krzysztof Kozlowski --- arch/arm/mach-s3c24xx/bast-ide.c | 1 + arch/arm/mach-s3c24xx/bast-irq.c | 1 + arch/arm/mach-s3c24xx/common.h | 1 + arch/arm/mach-s3c24xx/irq-s3c24xx.c | 1 + arch/arm/mach-s3c24xx/pm-s3c2412.c | 1 + arch/arm/mach-s3c24xx/s3c2443.c | 1 + arch/arm/mach-s3c24xx/simtec-usb.c | 1 + 7 files changed, 7 insertions(+) diff --git a/arch/arm/mach-s3c24xx/bast-ide.c b/arch/arm/mach-s3c24xx/bast-ide.c index 067944398f46..ee6fbb407640 100644 --- a/arch/arm/mach-s3c24xx/bast-ide.c +++ b/arch/arm/mach-s3c24xx/bast-ide.c @@ -20,6 +20,7 @@ #include #include +#include #include "bast.h" diff --git a/arch/arm/mach-s3c24xx/bast-irq.c b/arch/arm/mach-s3c24xx/bast-irq.c index 03209fefa5db..a6db5e2c910c 100644 --- a/arch/arm/mach-s3c24xx/bast-irq.c +++ b/arch/arm/mach-s3c24xx/bast-irq.c @@ -16,6 +16,7 @@ #include #include +#include #include "bast.h" diff --git a/arch/arm/mach-s3c24xx/common.h b/arch/arm/mach-s3c24xx/common.h index 8d2e2c6ae7eb..86826cafa15d 100644 --- a/arch/arm/mach-s3c24xx/common.h +++ b/arch/arm/mach-s3c24xx/common.h @@ -10,6 +10,7 @@ #define __ARCH_ARM_MACH_S3C24XX_COMMON_H __FILE__ #include +#include struct s3c2410_uartcfg; diff --git a/arch/arm/mach-s3c24xx/irq-s3c24xx.c b/arch/arm/mach-s3c24xx/irq-s3c24xx.c index d2031fecc386..b0e879ee14c1 100644 --- a/arch/arm/mach-s3c24xx/irq-s3c24xx.c +++ b/arch/arm/mach-s3c24xx/irq-s3c24xx.c @@ -25,6 +25,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/pm-s3c2412.c b/arch/arm/mach-s3c24xx/pm-s3c2412.c index b1d0ad07301b..2779d67d2c07 100644 --- a/arch/arm/mach-s3c24xx/pm-s3c2412.c +++ b/arch/arm/mach-s3c24xx/pm-s3c2412.c @@ -19,6 +19,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/s3c2443.c b/arch/arm/mach-s3c24xx/s3c2443.c index c278cfc10ba5..3c05d04bbbeb 100644 --- a/arch/arm/mach-s3c24xx/s3c2443.c +++ b/arch/arm/mach-s3c24xx/s3c2443.c @@ -25,6 +25,7 @@ #include #include +#include #include #include diff --git a/arch/arm/mach-s3c24xx/simtec-usb.c b/arch/arm/mach-s3c24xx/simtec-usb.c index 3488988316a8..693a2a9a7349 100644 --- a/arch/arm/mach-s3c24xx/simtec-usb.c +++ b/arch/arm/mach-s3c24xx/simtec-usb.c @@ -24,6 +24,7 @@ #include #include +#include #include #include -- 2.17.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel