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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0BCFDC433EF for ; Thu, 21 Jul 2022 21:45:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233868AbiGUVpx (ORCPT ); Thu, 21 Jul 2022 17:45:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33396 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229479AbiGUVpv (ORCPT ); Thu, 21 Jul 2022 17:45:51 -0400 Received: from luna (cpc152649-stkp13-2-0-cust121.10-2.cable.virginm.net [86.15.83.122]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D60A617E1D for ; Thu, 21 Jul 2022 14:45:49 -0700 (PDT) Received: from ben by luna with local (Exim 4.96) (envelope-from ) id 1oEdzP-001uuG-2X; Thu, 21 Jul 2022 22:45:47 +0100 From: Ben Dooks To: linux-kernel@vger.kernel.org Cc: maz@kernel.org, tglx@linutronix.de, Ben Dooks Subject: [PATCH] irqchip/mmp: fix missing include of Date: Thu, 21 Jul 2022 22:45:47 +0100 Message-Id: <20220721214547.457049-1-ben-linux@fluff.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The icu_irq_chip is deifned in but the irq-mmp.c does not include this to get the definition of this symbol. Include the header to fix the following sparse warning: drivers/irqchip/irq-mmp.c:139:17: warning: symbol 'icu_irq_chip' was not declared. Should it be static? Signed-off-by: Ben Dooks --- drivers/irqchip/irq-mmp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/irqchip/irq-mmp.c b/drivers/irqchip/irq-mmp.c index 83455ca72439..dcc30bee572e 100644 --- a/drivers/irqchip/irq-mmp.c +++ b/drivers/irqchip/irq-mmp.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include -- 2.35.1