From patchwork Wed Apr 18 12:26:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 10348073 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 74D106031B for ; Wed, 18 Apr 2018 12:26:58 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 65A78282EC for ; Wed, 18 Apr 2018 12:26:58 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 56E88285ED; Wed, 18 Apr 2018 12:26:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7F641285EE for ; Wed, 18 Apr 2018 12:26:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752712AbeDRM01 (ORCPT ); Wed, 18 Apr 2018 08:26:27 -0400 Received: from mga05.intel.com ([192.55.52.43]:35936 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752747AbeDRM00 (ORCPT ); Wed, 18 Apr 2018 08:26:26 -0400 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Apr 2018 05:26:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,465,1517904000"; d="scan'208";a="35183256" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga006.jf.intel.com with ESMTP; 18 Apr 2018 05:26:25 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1f8mAK-0001Ep-Bx; Wed, 18 Apr 2018 20:26:24 +0800 Date: Wed, 18 Apr 2018 20:26:08 +0800 From: kbuild test robot To: Masaharu Hayakawa Cc: kbuild-all@01.org, linux-renesas-soc@vger.kernel.org, Simon Horman Subject: [RFC PATCH renesas] mmc: tmio: tmio_mmc_prepare_hs400_tuning() can be static Message-ID: <20180418122608.GA52968@lkp-hsx03> References: <201804182048.TydzQbRW%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201804182048.TydzQbRW%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 485c8281e412 ("mmc: tmio: add eMMC HS400 mode support") Signed-off-by: Fengguang Wu --- tmio_mmc_core.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/host/tmio_mmc_core.c b/drivers/mmc/host/tmio_mmc_core.c index 4a83320..cd7afa9 100644 --- a/drivers/mmc/host/tmio_mmc_core.c +++ b/drivers/mmc/host/tmio_mmc_core.c @@ -1100,7 +1100,7 @@ static int tmio_multi_io_quirk(struct mmc_card *card, return blk_size; } -int tmio_mmc_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios) +static int tmio_mmc_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios) { struct tmio_mmc_host *host = mmc_priv(mmc); @@ -1110,8 +1110,8 @@ int tmio_mmc_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios) return 0; } -void tmio_mmc_prepare_hs400_tuning_downgrade(struct mmc_host *mmc, - struct mmc_ios *ios) +static void tmio_mmc_prepare_hs400_tuning_downgrade(struct mmc_host *mmc, + struct mmc_ios *ios) { struct tmio_mmc_host *host = mmc_priv(mmc); @@ -1119,8 +1119,8 @@ void tmio_mmc_prepare_hs400_tuning_downgrade(struct mmc_host *mmc, host->prepare_hs400_tuning_downgrade(host, ios); } -void tmio_mmc_complete_hs400_tuning(struct mmc_host *mmc, - struct mmc_ios *ios) +static void tmio_mmc_complete_hs400_tuning(struct mmc_host *mmc, + struct mmc_ios *ios) { struct tmio_mmc_host *host = mmc_priv(mmc);