From: kernel test robot <lkp@intel.com>
To: Romain Perier <romain.perier@gmail.com>
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org
Subject: [linux-chenxing:rperier-rtc 7/7] drivers/rtc/rtc-msc313.c:55:12: error: implicit declaration of function 'readw'
Date: Wed, 28 Jul 2021 20:46:33 +0800 [thread overview]
Message-ID: <202107282028.4nvWFFGL-lkp@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 4189 bytes --]
tree: git://github.com/linux-chenxing/linux.git rperier-rtc
head: 0a94a85f4e6d701c6945740acfb65f65793a5203
commit: 0a94a85f4e6d701c6945740acfb65f65793a5203 [7/7] fix driver
config: sparc-randconfig-r024-20210728 (attached as .config)
compiler: sparc64-linux-gcc (GCC) 10.3.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/linux-chenxing/linux/commit/0a94a85f4e6d701c6945740acfb65f65793a5203
git remote add linux-chenxing git://github.com/linux-chenxing/linux.git
git fetch --no-tags linux-chenxing rperier-rtc
git checkout 0a94a85f4e6d701c6945740acfb65f65793a5203
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=sparc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/rtc/rtc-msc313.c: In function 'msc313_rtc_read_alarm':
>> drivers/rtc/rtc-msc313.c:55:12: error: implicit declaration of function 'readw' [-Werror=implicit-function-declaration]
55 | seconds = readw(priv->rtc_base + REG_RTC_MATCH_VAL_L)
| ^~~~~
drivers/rtc/rtc-msc313.c: In function 'msc313_rtc_alarm_irq_enable':
>> drivers/rtc/rtc-msc313.c:76:2: error: implicit declaration of function 'writew' [-Werror=implicit-function-declaration]
76 | writew(reg, priv->rtc_base + REG_RTC_CTRL);
| ^~~~~~
cc1: some warnings being treated as errors
vim +/readw +55 drivers/rtc/rtc-msc313.c
88cfefa536ca80e Daniel Palmer 2020-06-12 49
88cfefa536ca80e Daniel Palmer 2020-06-12 50 static int msc313_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
88cfefa536ca80e Daniel Palmer 2020-06-12 51 {
88cfefa536ca80e Daniel Palmer 2020-06-12 52 struct msc313_rtc *priv = dev_get_drvdata(dev);
88cfefa536ca80e Daniel Palmer 2020-06-12 53 unsigned long seconds;
88cfefa536ca80e Daniel Palmer 2020-06-12 54
88cfefa536ca80e Daniel Palmer 2020-06-12 @55 seconds = readw(priv->rtc_base + REG_RTC_MATCH_VAL_L)
88cfefa536ca80e Daniel Palmer 2020-06-12 56 | (readw(priv->rtc_base + REG_RTC_MATCH_VAL_H) << 16);
88cfefa536ca80e Daniel Palmer 2020-06-12 57
88cfefa536ca80e Daniel Palmer 2020-06-12 58 rtc_time64_to_tm(seconds, &alarm->time);
88cfefa536ca80e Daniel Palmer 2020-06-12 59
88cfefa536ca80e Daniel Palmer 2020-06-12 60 if (!(readw(priv->rtc_base + REG_RTC_CTRL) & INT_MASK_BIT))
88cfefa536ca80e Daniel Palmer 2020-06-12 61 alarm->enabled = 1;
88cfefa536ca80e Daniel Palmer 2020-06-12 62
88cfefa536ca80e Daniel Palmer 2020-06-12 63 return 0;
88cfefa536ca80e Daniel Palmer 2020-06-12 64 }
88cfefa536ca80e Daniel Palmer 2020-06-12 65
88cfefa536ca80e Daniel Palmer 2020-06-12 66 static int msc313_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
88cfefa536ca80e Daniel Palmer 2020-06-12 67 {
88cfefa536ca80e Daniel Palmer 2020-06-12 68 struct msc313_rtc *priv = dev_get_drvdata(dev);
88cfefa536ca80e Daniel Palmer 2020-06-12 69 u16 reg;
88cfefa536ca80e Daniel Palmer 2020-06-12 70
88cfefa536ca80e Daniel Palmer 2020-06-12 71 reg = readw(priv->rtc_base + REG_RTC_CTRL);
88cfefa536ca80e Daniel Palmer 2020-06-12 72 if (enabled)
88cfefa536ca80e Daniel Palmer 2020-06-12 73 reg &= ~INT_MASK_BIT;
88cfefa536ca80e Daniel Palmer 2020-06-12 74 else
88cfefa536ca80e Daniel Palmer 2020-06-12 75 reg |= INT_MASK_BIT;
88cfefa536ca80e Daniel Palmer 2020-06-12 @76 writew(reg, priv->rtc_base + REG_RTC_CTRL);
88cfefa536ca80e Daniel Palmer 2020-06-12 77 return 0;
88cfefa536ca80e Daniel Palmer 2020-06-12 78 }
88cfefa536ca80e Daniel Palmer 2020-06-12 79
:::::: The code at line 55 was first introduced by commit
:::::: 88cfefa536ca80e13ffde033cdc96248e70d3724 rtc: Add support for the MSTAR MSC313 RTC
:::::: TO: Daniel Palmer <daniel@0x0f.com>
:::::: CC: Romain Perier <romain.perier@gmail.com>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 37600 bytes --]
reply other threads:[~2021-07-28 12:47 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202107282028.4nvWFFGL-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=romain.perier@gmail.com \
/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