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=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,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 3C734C10F0E for ; Thu, 18 Apr 2019 18:19:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0E4AD206B6 for ; Thu, 18 Apr 2019 18:19:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555611569; bh=oyI5eh0JaFCHLWpz91152amjxStpMAp/+m2/NYxxbJs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Q0keYLokM500MYrOUZOZraAnEgY2JwYLgMNhFBPhAjnIMUTo8FWav74BqvgzYzD+g 1P45p0kbQuWLnvtIzpmCaN8yAn+wRttEtIC0Kak3b4gMYCuatlcoPjLvz49tFP4DX/ ubgMq60w+gp3lzGS8/uRoDHYM1SCPfAuz7Nsw1yg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391640AbfDRSJt (ORCPT ); Thu, 18 Apr 2019 14:09:49 -0400 Received: from mail.kernel.org ([198.145.29.99]:41480 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2403932AbfDRSJs (ORCPT ); Thu, 18 Apr 2019 14:09:48 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 286AE218DA; Thu, 18 Apr 2019 18:09:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555610987; bh=oyI5eh0JaFCHLWpz91152amjxStpMAp/+m2/NYxxbJs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WZbXWdwmnWz3P4lBn51Th4HoCpS3UPRKpSLa2HtJh0SX96fabMlV6q0epN1oX7WAF DtvCbUcpcWvcVsGKiew5xopbk0WIxO1aoqj2TUAf0PGEIhuIsyOqm71uwwpTI/s32c NnxNAnX4Khe/MTIbiM73hxBswSY94mZvUBQPAb/E= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Arnd Bergmann , Wolfram Sang , Nathan Chancellor , Ulf Hansson , Sasha Levin Subject: [PATCH 5.0 16/93] mmc: davinci: remove extraneous __init annotation Date: Thu, 18 Apr 2019 19:56:54 +0200 Message-Id: <20190418160438.522966606@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190418160436.781762249@linuxfoundation.org> References: <20190418160436.781762249@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org [ Upstream commit 9ce58dd7d9da3ca0d7cb8c9568f1c6f4746da65a ] Building with clang finds a mistaken __init tag: WARNING: vmlinux.o(.text+0x5e4250): Section mismatch in reference from the function davinci_mmcsd_probe() to the function .init.text:init_mmcsd_host() The function davinci_mmcsd_probe() references the function __init init_mmcsd_host(). This is often because davinci_mmcsd_probe lacks a __init annotation or the annotation of init_mmcsd_host is wrong. Signed-off-by: Arnd Bergmann Acked-by: Wolfram Sang Reviewed-by: Nathan Chancellor Signed-off-by: Ulf Hansson Signed-off-by: Sasha Levin --- drivers/mmc/host/davinci_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c index 9e68c3645e22..e6f14257a7d0 100644 --- a/drivers/mmc/host/davinci_mmc.c +++ b/drivers/mmc/host/davinci_mmc.c @@ -1117,7 +1117,7 @@ static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host) { } #endif -static void __init init_mmcsd_host(struct mmc_davinci_host *host) +static void init_mmcsd_host(struct mmc_davinci_host *host) { mmc_davinci_reset_ctrl(host, 1); -- 2.19.1