public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, rjw@rjwysocki.net, lenb@kernel.org,
	daniel.lezcano@linaro.org, tglx@linutronix.de,
	marc.zyngier@arm.com, lorenzo.pieralisi@arm.com,
	sudeep.holla@arm.com, hanjun.guo@linaro.org,
	linux-arm-kernel@lists.infradead.org,
	linaro-acpi@lists.linaro.org, linux-kernel@vger.kernel.org,
	linux-acpi@vger.kernel.org, rruigrok@codeaurora.org,
	harba@codeaurora.org, cov@codeaurora.org, timur@codeaurora.org,
	graeme.gregory@linaro.org, al.stone@linaro.org, jcm@redhat.com,
	wei@redhat.com, arnd@arndb.de, wim@iguana.be,
	catalin.marinas@arm.com, will.deacon@arm.com,
	Suravee.Suthikulpanit@amd.com, leo.duran@amd.com,
	linux@roeck-us.net, linux-watchdog@vger.kernel.org,
	Fu Wei <fu.wei@linaro.org>
Subject: Re: [PATCH v8 4/9] clocksource/drivers/arm_arch_timer: use readq to get 64-bit CNTVCT
Date: Mon, 25 Jul 2016 04:26:42 +0800	[thread overview]
Message-ID: <201607250415.f4732fEH%fengguang.wu@intel.com> (raw)
In-Reply-To: <1468952284-28942-5-git-send-email-fu.wei@linaro.org>

[-- Attachment #1: Type: text/plain, Size: 1593 bytes --]

Hi,

[auto build test ERROR on stable/master]
[cannot apply to tip/timers/core pm/linux-next next-20160724]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/fu-wei-linaro-org/acpi-clocksource-add-GTDT-driver-and-GTDT-support-in-arm_arch_timer/20160725-022614
base:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git master
config: arm-sunxi_defconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (Debian 5.4.0-6) 5.4.0 20160609
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=arm 

All errors (new ones prefixed by >>):

   drivers/clocksource/arm_arch_timer.c: In function 'arch_counter_get_cntvct_mem':
>> drivers/clocksource/arm_arch_timer.c:421:9: error: implicit declaration of function 'readq' [-Werror=implicit-function-declaration]
     return readq(arch_counter_base + CNTVCT_LO);
            ^
   cc1: some warnings being treated as errors

vim +/readq +421 drivers/clocksource/arm_arch_timer.c

   415	{
   416		return arch_timer_rate;
   417	}
   418	
   419	static u64 arch_counter_get_cntvct_mem(void)
   420	{
 > 421		return readq(arch_counter_base + CNTVCT_LO);
   422	}
   423	
   424	/*

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 19385 bytes --]

  reply	other threads:[~2016-07-24 20:27 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-19 18:17 [PATCH v8 0/9] acpi, clocksource: add GTDT driver and GTDT support in arm_arch_timer fu.wei-QSEj5FYQhm4dnm+yROfE0A
2016-07-19 18:17 ` [PATCH v8 1/9] clocksource/drivers/arm_arch_timer: Move enums and defines to header file fu.wei
2016-07-19 18:17 ` [PATCH v8 2/9] clocksource/drivers/arm_arch_timer: Add a new enum for spi type fu.wei
2016-07-19 18:17 ` [PATCH v8 3/9] clocksource/drivers/arm_arch_timer: Improve printk relevant code fu.wei
     [not found] ` <1468952284-28942-1-git-send-email-fu.wei-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-07-19 18:17   ` [PATCH v8 4/9] clocksource/drivers/arm_arch_timer: use readq to get 64-bit CNTVCT fu.wei-QSEj5FYQhm4dnm+yROfE0A
2016-07-24 20:26     ` kbuild test robot [this message]
     [not found]     ` <1468952284-28942-5-git-send-email-fu.wei-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-07-25  9:02       ` Will Deacon
     [not found]         ` <20160725090258.GA15864-5wv7dgnIgG8@public.gmane.org>
2016-07-25 15:50           ` Fu Wei
     [not found]             ` <CADyBb7tR4+78k52JrVZGo9FMuO8a8RBTTYK7PBx1RzP3Lx9snQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-07-25 22:47               ` Russell King - ARM Linux
2016-07-19 18:18 ` [PATCH v8 5/9] acpi/arm64: Add GTDT table parse driver fu.wei
     [not found]   ` <1468952284-28942-6-git-send-email-fu.wei-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-07-21 13:28     ` Rafael J. Wysocki
2016-07-22 17:57       ` Fu Wei
2016-07-19 18:18 ` [PATCH v8 6/9] clocksource/drivers/arm_arch_timer: Simplify ACPI support code fu.wei
2016-07-19 18:18 ` [PATCH v8 7/9] acpi/arm64: Add memory-mapped timer support in GTDT driver fu.wei
2016-07-21 12:40   ` Lorenzo Pieralisi
2016-07-25 16:06     ` Fu Wei
2016-07-19 18:18 ` [PATCH v8 8/9] clocksource/drivers/arm_arch_timer: Add GTDT support for memory-mapped timer fu.wei
2016-07-19 18:18 ` [PATCH v8 9/9] acpi/arm64: Add SBSA Generic Watchdog support in GTDT driver fu.wei

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=201607250415.f4732fEH%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=Suravee.Suthikulpanit@amd.com \
    --cc=al.stone@linaro.org \
    --cc=arnd@arndb.de \
    --cc=catalin.marinas@arm.com \
    --cc=cov@codeaurora.org \
    --cc=daniel.lezcano@linaro.org \
    --cc=fu.wei@linaro.org \
    --cc=graeme.gregory@linaro.org \
    --cc=hanjun.guo@linaro.org \
    --cc=harba@codeaurora.org \
    --cc=jcm@redhat.com \
    --cc=kbuild-all@01.org \
    --cc=lenb@kernel.org \
    --cc=leo.duran@amd.com \
    --cc=linaro-acpi@lists.linaro.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=marc.zyngier@arm.com \
    --cc=rjw@rjwysocki.net \
    --cc=rruigrok@codeaurora.org \
    --cc=sudeep.holla@arm.com \
    --cc=tglx@linutronix.de \
    --cc=timur@codeaurora.org \
    --cc=wei@redhat.com \
    --cc=will.deacon@arm.com \
    --cc=wim@iguana.be \
    /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