From patchwork Tue Aug 13 06:56:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: cuigaosheng X-Patchwork-Id: 13761388 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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id D5314C52D7C for ; Tue, 13 Aug 2024 06:57:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Type: Content-Transfer-Encoding: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=MQ4RtHBb9uuIm2s7MhY/5Vm3aoo7sf662lt8SyxSU+Q=; b=VGjpecVH/83Kbh4fs7reuxjdBu fNMHBVhokFLacENOeyFl3mWtTelP9CdSVe/K1OfTb+gGUbiGvwjvKLPvhJxxCZEC0148/yavmLySv bhzExwp70aZKTwJT10tOdfI3dICH1OwQroa2yIoo4wgRNw015iU+8nZ3dnkuQF+uX9dRpJaOuxQl7 XfjZOYwgqOchc+MQ0uf+1bpYkKsgAxSvufgDOIRtrE21QCyS5XELFygoftpI804tysIcGJOjUNVQg M+HWaU8PZoPwcJ/j0G56736HJfaMra4LwHKoYSvXkG6LCb8beus80DhIq/CV50ZeiCbIxLDomeitt jwzlr7Kg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sdlTO-00000002d1o-07qp; Tue, 13 Aug 2024 06:57:38 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sdlSl-00000002cvl-37Dr for linux-arm-kernel@lists.infradead.org; Tue, 13 Aug 2024 06:57:01 +0000 Received: from mail.maildlp.com (unknown [172.19.163.48]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4WjhwZ6mhJzpTVZ; Tue, 13 Aug 2024 14:55:26 +0800 (CST) Received: from kwepemd200011.china.huawei.com (unknown [7.221.188.251]) by mail.maildlp.com (Postfix) with ESMTPS id E590118006C; Tue, 13 Aug 2024 14:56:45 +0800 (CST) Received: from cgs.huawei.com (10.244.148.83) by kwepemd200011.china.huawei.com (7.221.188.251) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1258.34; Tue, 13 Aug 2024 14:56:45 +0800 From: Gaosheng Cui To: , , , , CC: , Subject: [PATCH -next] omap: mux: Remove unused omap2_mux_init() declaration Date: Tue, 13 Aug 2024 14:56:44 +0800 Message-ID: <20240813065644.1037593-1-cuigaosheng1@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Originating-IP: [10.244.148.83] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To kwepemd200011.china.huawei.com (7.221.188.251) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240812_235700_057490_E9EA99E1 X-CRM114-Status: UNSURE ( 7.95 ) 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 omap2_mux_init() has been removed since commit c9d8230e316a ("omap: mux: Remove old mux code"), so remove it. Signed-off-by: Gaosheng Cui --- arch/arm/mach-omap1/mux.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/mach-omap1/mux.h b/arch/arm/mach-omap1/mux.h index 3e7ed3348a55..3f040e0cece2 100644 --- a/arch/arm/mach-omap1/mux.h +++ b/arch/arm/mach-omap1/mux.h @@ -139,6 +139,4 @@ extern int omap_mux_register(struct omap_mux_cfg *); static inline int omap1_mux_init(void) { return 0; } #endif -extern int omap2_mux_init(void); - #endif