From patchwork Mon Sep 27 06:37:23 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 12519169 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C079BC433FE for ; Mon, 27 Sep 2021 06:40:04 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 874FB6113D for ; Mon, 27 Sep 2021 06:40:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 874FB6113D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bootlin.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=xUDN2wEFuEc4VAySTyYAgvSoHCfQbuly34TatjjesCk=; b=m2e6BlBvDMi2Ei v1rCamveFyLi5Oymiv9TJyBM0Ae2jnbADxLWhuS4Bg2oXamDms67hWCbV9HQAa4rqMYRBm0DkZ9vL k/dE5G2Rj/1BLBcwD195U7Lt/a60IQepUnXvuXzWjZLRi+NeQHLLx4Kv20EHb+GwiT+5tz2KMQ/TL LWJ+PjLJwy1nyr2HhTQpeF10HvGpQFyl3iMrVs2wQFh/iWZfUBjO/Re/JHSCrCZPjnJKnf7XXvvqs Pgjzv1qF2oet0gEW9bfseudPUWyF6q+fqpaqkX0ZiDh9IBV1Xp0ciNQ3O8AZrvtwkjcOTudC0IVx8 Pm5bR8KsfqAu2mLFxBDQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mUkGo-001h7u-WB; Mon, 27 Sep 2021 06:37:47 +0000 Received: from relay10.mail.gandi.net ([217.70.178.230]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mUkGk-001h6x-SK for linux-arm-kernel@lists.infradead.org; Mon, 27 Sep 2021 06:37:44 +0000 Received: (Authenticated sender: alexandre.belloni@bootlin.com) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 68878240005; Mon, 27 Sep 2021 06:37:30 +0000 (UTC) From: Alexandre Belloni To: Daniel Palmer , Alessandro Zummo , Alexandre Belloni Cc: Stephen Rothwell , linux-arm-kernel@lists.infradead.org, linux-rtc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] rtc: msc313: fix missing include Date: Mon, 27 Sep 2021 08:37:23 +0200 Message-Id: <20210927063724.312687-1-alexandre.belloni@bootlin.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210926_233743_089093_4C2F4103 X-CRM114-Status: UNSURE ( 9.31 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The driver needs io.h Reported-by: Stephen Rothwell Signed-off-by: Alexandre Belloni --- drivers/rtc/rtc-msc313.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/rtc/rtc-msc313.c b/drivers/rtc/rtc-msc313.c index f493ca5f181b..5f178d29cfd8 100644 --- a/drivers/rtc/rtc-msc313.c +++ b/drivers/rtc/rtc-msc313.c @@ -10,6 +10,7 @@ #include #include +#include #include #include #include