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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC4CDC433F5 for ; Thu, 21 Oct 2021 12:34:17 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 223D761205 for ; Thu, 21 Oct 2021 12:34:17 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 223D761205 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=atomide.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 91ED294000B; Thu, 21 Oct 2021 08:34:16 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 8CE2D900002; Thu, 21 Oct 2021 08:34:16 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 7E4C794000B; Thu, 21 Oct 2021 08:34:16 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0224.hostedemail.com [216.40.44.224]) by kanga.kvack.org (Postfix) with ESMTP id 709F3900002 for ; Thu, 21 Oct 2021 08:34:16 -0400 (EDT) Received: from smtpin03.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 29B412C6AA for ; Thu, 21 Oct 2021 12:34:16 +0000 (UTC) X-FDA: 78720387312.03.B86FD9A Received: from muru.com (muru.com [72.249.23.125]) by imf25.hostedemail.com (Postfix) with ESMTP id 516F4B000189 for ; Thu, 21 Oct 2021 12:34:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id CCC9380EB; Thu, 21 Oct 2021 12:34:47 +0000 (UTC) Date: Thu, 21 Oct 2021 15:34:13 +0300 From: Tony Lindgren To: kernel test robot Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, Linux Memory Management List , Ulf Hansson Subject: Re: [linux-next:master 8693/9489] drivers/mmc/host/sdhci-omap.c:1450:21: error: use of undeclared identifier 'sdhci_omap_runtime_suspend'; did you mean '__pm_runtime_suspend'? Message-ID: References: <202110210056.QMBILm00-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202110210056.QMBILm00-lkp@intel.com> X-Rspamd-Server: rspam02 X-Rspamd-Queue-Id: 516F4B000189 X-Stat-Signature: b36qodsoayu7ajk5fk4aatzuifqpxcb9 Authentication-Results: imf25.hostedemail.com; dkim=none; dmarc=none; spf=none (imf25.hostedemail.com: domain of tony@atomide.com has no SPF policy when checking 72.249.23.125) smtp.mailfrom=tony@atomide.com X-HE-Tag: 1634819651-379270 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: * kernel test robot [211020 16:23]: > tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master > head: 51dba6e335ff9d1f6f50b5cacced8598956e1437 > commit: f433e8aac6b94218394c6e7b80bb89e4e79c9549 [8693/9489] mmc: sdhci-omap: Implement PM runtime functions > config: riscv-randconfig-r042-20211020 (attached as .config) > compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 9660563950aaed54020bfdf0be07e7096a9553e4) > 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 > # install riscv cross compiling tool for clang build > # apt-get install binutils-riscv64-linux-gnu > # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=f433e8aac6b94218394c6e7b80bb89e4e79c9549 > git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git > git fetch --no-tags linux-next master > git checkout f433e8aac6b94218394c6e7b80bb89e4e79c9549 > # save the attached .config to linux build tree > mkdir build_dir > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash drivers/mmc/host/ > > If you fix the issue, kindly add following tag as appropriate > Reported-by: kernel test robot > > All errors (new ones prefixed by >>): > > >> drivers/mmc/host/sdhci-omap.c:1450:21: error: use of undeclared identifier 'sdhci_omap_runtime_suspend'; did you mean '__pm_runtime_suspend'? > SET_RUNTIME_PM_OPS(sdhci_omap_runtime_suspend, > ^~~~~~~~~~~~~~~~~~~~~~~~~~ > __pm_runtime_suspend Hmm so seems like these should not be in the CONFIG_PM_SLEEP. Probably best to just use __maybe_unused here instead, I'll send a patch doing that if no objections. Regards, Tony