From: kernel test robot <lkp@intel.com>
To: Liming Sun <limings@nvidia.com>,
Adrian Hunter <adrian.hunter@intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
David Thompson <davthompson@nvidia.com>,
Shawn Lin <shawn.lin@rock-chips.com>
Cc: oe-kbuild-all@lists.linux.dev, Liming Sun <limings@nvidia.com>,
linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] mmc: sdhci-of-dwcmshc: Add runtime PM operations
Date: Sat, 13 May 2023 01:43:14 +0800 [thread overview]
Message-ID: <202305130116.ynGq0pC5-lkp@intel.com> (raw)
In-Reply-To: <20230512122648.223974-1-limings@nvidia.com>
Hi Liming,
kernel test robot noticed the following build errors:
[auto build test ERROR on ulf-hansson-mmc-mirror/next]
[also build test ERROR on linus/master v6.4-rc1 next-20230512]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Liming-Sun/mmc-sdhci-of-dwcmshc-Add-runtime-PM-operations/20230512-202948
base: https://git.linaro.org/people/ulf.hansson/mmc-mirror.git next
patch link: https://lore.kernel.org/r/20230512122648.223974-1-limings%40nvidia.com
patch subject: [PATCH v3] mmc: sdhci-of-dwcmshc: Add runtime PM operations
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20230513/202305130116.ynGq0pC5-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/eb5d4c0702ce24630f3d82a37f39437f52607cbb
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Liming-Sun/mmc-sdhci-of-dwcmshc-Add-runtime-PM-operations/20230512-202948
git checkout eb5d4c0702ce24630f3d82a37f39437f52607cbb
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202305130116.ynGq0pC5-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/mmc/host/sdhci-of-dwcmshc.c: In function 'dwcmshc_runtime_suspend':
>> drivers/mmc/host/sdhci-of-dwcmshc.c:674:17: error: implicit declaration of function 'dwcmshc_disable_card_clk' [-Werror=implicit-function-declaration]
674 | dwcmshc_disable_card_clk(host);
| ^~~~~~~~~~~~~~~~~~~~~~~~
drivers/mmc/host/sdhci-of-dwcmshc.c: In function 'dwcmshc_runtime_resume':
>> drivers/mmc/host/sdhci-of-dwcmshc.c:684:9: error: implicit declaration of function 'dwcmshc_enable_card_clk' [-Werror=implicit-function-declaration]
684 | dwcmshc_enable_card_clk(host);
| ^~~~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/dwcmshc_disable_card_clk +674 drivers/mmc/host/sdhci-of-dwcmshc.c
666
667 static int dwcmshc_runtime_suspend(struct device *dev)
668 {
669 struct sdhci_host *host = dev_get_drvdata(dev);
670 int ret = 0;
671
672 ret = sdhci_runtime_suspend_host(host);
673 if (!ret)
> 674 dwcmshc_disable_card_clk(host);
675
676 return ret;
677 }
678
679 static int dwcmshc_runtime_resume(struct device *dev)
680 {
681 struct sdhci_host *host = dev_get_drvdata(dev);
682 int ret = 0;
683
> 684 dwcmshc_enable_card_clk(host);
685 ret = sdhci_runtime_resume_host(host, 0);
686
687 return ret;
688 }
689
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-05-12 17:44 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-11 19:03 [PATCH v1 1/1] mmc: sdhci-of-dwcmshc: Add runtime PM operations for BlueField-3 Liming Sun
2023-05-12 7:35 ` Ulf Hansson
2023-05-12 12:09 ` Liming Sun
2023-05-12 12:20 ` [PATCH v2] " Liming Sun
2023-05-12 12:26 ` [PATCH v3] mmc: sdhci-of-dwcmshc: Add runtime PM operations Liming Sun
2023-05-12 17:43 ` kernel test robot [this message]
2023-05-12 18:15 ` [PATCH v4] " Liming Sun
2023-05-19 13:19 ` Adrian Hunter
2023-07-28 12:20 ` Liming Sun
2023-07-28 12:20 ` [PATCH v5] " Liming Sun
2023-08-01 15:36 ` Adrian Hunter
2023-08-04 23:29 ` Liming Sun
2023-08-04 23:30 ` [PATCH v6] " Liming Sun
2023-08-08 9:39 ` Ulf Hansson
2023-08-08 13:21 ` Liming Sun
2023-08-08 13:56 ` Ulf Hansson
2023-08-08 20:24 ` Liming Sun
2023-08-09 10:58 ` Ulf Hansson
2023-08-08 20:23 ` [PATCH v7] " Liming Sun
2023-08-10 8:12 ` Adrian Hunter
2023-08-10 10:21 ` Ulf Hansson
2023-08-10 12:44 ` Adrian Hunter
2023-08-10 16:34 ` Ulf Hansson
2023-08-11 5:56 ` Adrian Hunter
2023-08-11 8:36 ` Ulf Hansson
2023-08-16 16:28 ` Liming Sun
2023-08-16 21:40 ` Ulf Hansson
2023-08-17 1:06 ` [PATCH v8] " Liming Sun
2023-08-17 7:35 ` Adrian Hunter
2023-08-17 16:22 ` Liming Sun
2023-08-18 7:27 ` Adrian Hunter
2023-08-17 16:21 ` [PATCH v9] " Liming Sun
2023-08-18 9:00 ` Ulf Hansson
2023-08-18 9:35 ` Adrian Hunter
2023-08-18 10:19 ` Ulf Hansson
2023-08-22 19:46 ` Liming Sun
2023-08-22 19:59 ` [PATCH v10 1/2] mmc : sdhci-of-dwcmshc : add error handling in dwcmshc_resume Liming Sun
2023-08-24 7:25 ` Adrian Hunter
2023-08-24 11:00 ` Ulf Hansson
2023-08-22 19:59 ` [PATCH v10 2/2] This commit implements the runtime PM operations to disable eMMC card clock when idle Liming Sun
2023-08-24 7:28 ` Adrian Hunter
2023-08-24 11:00 ` Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202305130116.ynGq0pC5-lkp@intel.com \
--to=lkp@intel.com \
--cc=adrian.hunter@intel.com \
--cc=davthompson@nvidia.com \
--cc=limings@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=shawn.lin@rock-chips.com \
--cc=ulf.hansson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox