Re: [PATCH] backlight: lms283gf05: Convert to GPIO descriptors
by kbuild test robot
Hi Linus,
I love your patch! Perhaps something to improve:
[auto build test WARNING on backlight/for-backlight-next]
[also build test WARNING on arm-soc/for-next spi/for-next tegra-drm/drm/tegra/for-next v5.7-rc3 next-20200428]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Linus-Walleij/backlight-lms283gf...
base: https://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git for-backlight-next
config: c6x-allyesconfig (attached as .config)
compiler: c6x-elf-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
drivers/video/backlight/lms283gf05.c: In function 'lms283gf05_probe':
drivers/video/backlight/lms283gf05.c:151:6: warning: unused variable 'ret' [-Wunused-variable]
151 | int ret = 0;
| ^~~
>> drivers/video/backlight/lms283gf05.c:153:12: warning: 'st' is used uninitialized in this function [-Wuninitialized]
153 | st->reset = gpiod_get_optional(&spi->dev, "reset", GPIOD_OUT_HIGH);
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/st +153 drivers/video/backlight/lms283gf05.c
146
147 static int lms283gf05_probe(struct spi_device *spi)
148 {
149 struct lms283gf05_state *st;
150 struct lcd_device *ld;
> 151 int ret = 0;
152
> 153 st->reset = gpiod_get_optional(&spi->dev, "reset", GPIOD_OUT_HIGH);
154 if (st->reset)
155 gpiod_set_consumer_name(st->reset, "LMS283GF05 RESET");
156
157 st = devm_kzalloc(&spi->dev, sizeof(struct lms283gf05_state),
158 GFP_KERNEL);
159 if (st == NULL)
160 return -ENOMEM;
161
162 ld = devm_lcd_device_register(&spi->dev, "lms283gf05", &spi->dev, st,
163 &lms_ops);
164 if (IS_ERR(ld))
165 return PTR_ERR(ld);
166
167 st->spi = spi;
168 st->ld = ld;
169
170 spi_set_drvdata(spi, st);
171
172 /* kick in the LCD */
173 if (st->reset)
174 lms283gf05_reset(st->reset);
175 lms283gf05_toggle(spi, disp_initseq, ARRAY_SIZE(disp_initseq));
176
177 return 0;
178 }
179
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[yyu168-linux_cet:cet 30/47] arch/x86/include/asm/fpu/internal.h:483:19: error: 'save_cet_to_sigframe' declared 'static' but never defined
by kbuild test robot
tree: https://github.com/yyu168/linux_cet.git cet
head: 80138cab012f983a4395ac70e3804739eaff02eb
commit: 0087ee9f497dcb2ae98a00a0b6c95994848c9943 [30/47] x86/cet/shstk: Handle signals for shadow stack
config: x86_64-rhel (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
git checkout 0087ee9f497dcb2ae98a00a0b6c95994848c9943
# save the attached .config to linux build tree
make ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
In file included from arch/x86/kvm/x86.c:66:0:
arch/x86/include/asm/fpu/internal.h:485:1: error: expected identifier or '(' before '{' token
{
^
>> arch/x86/include/asm/fpu/internal.h:483:19: error: 'save_cet_to_sigframe' declared 'static' but never defined [-Werror=unused-function]
static inline int save_cet_to_sigframe(int ia32, void __user *fp,
^~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
vim +483 arch/x86/include/asm/fpu/internal.h
478
479 #ifdef CONFIG_X86_INTEL_CET
480 extern int save_cet_to_sigframe(int ia32, void __user *fp,
481 unsigned long restorer);
482 #else
> 483 static inline int save_cet_to_sigframe(int ia32, void __user *fp,
484 unsigned long restorer);
485 {
486 return 0;
487 }
488 #endif
489 extern int copy_fpstate_to_sigframe(void __user *buf, void __user *fp, int size);
490
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[alibaba-cloud:linux-next 11100/11102] arch/sparc/include/asm/percpu_64.h:15:28: note: in expansion of macro '__per_cpu_offset'
by kbuild test robot
tree: https://github.com/alibaba/cloud-kernel.git linux-next
head: 34e80779976780a7de3a79606ed73f634b1d2efc
commit: 9e7b35d6d84e2361d56a113cf40139fe83f4ba37 [11100/11102] alinux: sched: Introduce per-cgroup iowait accounting
config: sparc-allyesconfig (attached as .config)
compiler: sparc64-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 9e7b35d6d84e2361d56a113cf40139fe83f4ba37
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=sparc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
In file included from include/linux/compiler_types.h:64,
from <command-line>:
kernel/sched/fair.c: In function 'update_nr_iowait_fair':
kernel/sched/fair.c:10045:36: error: 'struct task_struct' has no member named 'cpu'
10045 | clock = __rq_clock_broken(cpu_rq(p->cpu));
| ^~
include/linux/compiler-gcc.h:58:26: note: in definition of macro 'RELOC_HIDE'
58 | (typeof(ptr)) (__ptr + (off)); \
| ^~~
include/linux/percpu-defs.h:238:2: note: in expansion of macro 'SHIFT_PERCPU_PTR'
238 | SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))); \
| ^~~~~~~~~~~~~~~~
>> arch/sparc/include/asm/percpu_64.h:15:28: note: in expansion of macro '__per_cpu_offset'
15 | #define per_cpu_offset(x) (__per_cpu_offset(x))
| ^~~~~~~~~~~~~~~~
include/linux/percpu-defs.h:238:26: note: in expansion of macro 'per_cpu_offset'
238 | SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))); \
| ^~~~~~~~~~~~~~
include/linux/percpu-defs.h:271:29: note: in expansion of macro 'per_cpu_ptr'
271 | #define per_cpu(var, cpu) (*per_cpu_ptr(&(var), cpu))
| ^~~~~~~~~~~
kernel/sched/sched.h:968:24: note: in expansion of macro 'per_cpu'
968 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
| ^~~~~~~
kernel/sched/fair.c:10045:28: note: in expansion of macro 'cpu_rq'
10045 | clock = __rq_clock_broken(cpu_rq(p->cpu));
| ^~~~~~
vim +/__per_cpu_offset +15 arch/sparc/include/asm/percpu_64.h
5a5488d3bb9a23 arch/sparc/include/asm/percpu_64.h David S. Miller 2009-04-01 12
f5e706ad886b6a include/asm-sparc/percpu_64.h Sam Ravnborg 2008-07-17 13 #define __per_cpu_offset(__cpu) \
5a5488d3bb9a23 arch/sparc/include/asm/percpu_64.h David S. Miller 2009-04-01 14 (trap_block[(__cpu)].__per_cpu_base)
f5e706ad886b6a include/asm-sparc/percpu_64.h Sam Ravnborg 2008-07-17 @15 #define per_cpu_offset(x) (__per_cpu_offset(x))
f5e706ad886b6a include/asm-sparc/percpu_64.h Sam Ravnborg 2008-07-17 16
:::::: The code at line 15 was first introduced by commit
:::::: f5e706ad886b6a5eb59637830110b09ccebf01c5 sparc: join the remaining header files
:::::: TO: Sam Ravnborg <sam(a)ravnborg.org>
:::::: CC: David S. Miller <davem(a)davemloft.net>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[android-common:android-5.4 16/36] include/vdso/clocksource.h:9:10: fatal error: 'asm/vdso/clocksource.h' file not found
by kbuild test robot
tree: https://android.googlesource.com/kernel/common android-5.4
head: 7f84f8f1841844015ce11c0606d4e57b75533604
commit: 2b3f7bf08d3db5471d541868f201e2209cb26079 [16/36] BACKPORT: linux/clocksource.h: Extract common header for vDSO
config: mips-randconfig-a001-20200428 (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project f30416fdde922eaa655934e050026930fefbd260)
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install mips cross compiling tool for clang build
# apt-get install binutils-mips-linux-gnu
git checkout 2b3f7bf08d3db5471d541868f201e2209cb26079
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=mips
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
In file included from fs/proc/stat.c:15:
In file included from include/linux/tick.h:8:
In file included from include/linux/clockchips.h:14:
In file included from include/linux/clocksource.h:30:
>> include/vdso/clocksource.h:9:10: fatal error: 'asm/vdso/clocksource.h' file not found
#include <asm/vdso/clocksource.h>
^~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
vim +9 include/vdso/clocksource.h
6
7 #if defined(CONFIG_ARCH_CLOCKSOURCE_DATA) || \
8 defined(CONFIG_GENERIC_GETTIMEOFDAY)
> 9 #include <asm/vdso/clocksource.h>
10 #endif /* CONFIG_ARCH_CLOCKSOURCE_DATA || CONFIG_GENERIC_GETTIMEOFDAY */
11
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[hch-misc:set_fs-coredump 5/8] arch/x86/kernel/signal.c:522:17: error: 'union <anonymous>' has no member named '_sigchld_x32'; did you mean '_sigchld'?
by kbuild test robot
tree: git://git.infradead.org/users/hch/misc.git set_fs-coredump
head: cc7765485f732e2a0f36a0f9ec36cefacb010b8e
commit: 5ca642c4c744ce6460ebb91fe30ec7a064d28e96 [5/8] signal: factor copy_siginfo_to_external32 from copy_siginfo_to_user32
config: x86_64-defconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
git checkout 5ca642c4c744ce6460ebb91fe30ec7a064d28e96
# save the attached .config to linux build tree
make ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
arch/x86/kernel/signal.c: In function '__copy_siginfo_to_user32':
>> arch/x86/kernel/signal.c:522:17: error: 'union <anonymous>' has no member named '_sigchld_x32'; did you mean '_sigchld'?
new._sifields._sigchld_x32._utime = from->si_utime;
^~~~~~~~~~~~
_sigchld
arch/x86/kernel/signal.c:523:17: error: 'union <anonymous>' has no member named '_sigchld_x32'; did you mean '_sigchld'?
new._sifields._sigchld_x32._stime = from->si_stime;
^~~~~~~~~~~~
_sigchld
vim +522 arch/x86/kernel/signal.c
513
514 #ifdef CONFIG_ARCH_COPY_SIGINFO_TO_USER32
515 int __copy_siginfo_to_user32(struct compat_siginfo __user *to,
516 const struct kernel_siginfo *from, bool x32_ABI)
517 {
518 struct compat_siginfo new;
519
520 copy_siginfo_to_external32(&new, from);
521 if (x32_ABI && from->si_signo == SIGCHLD) {
> 522 new._sifields._sigchld_x32._utime = from->si_utime;
523 new._sifields._sigchld_x32._stime = from->si_stime;
524 }
525 if (copy_to_user(to, &new, sizeof(struct compat_siginfo)))
526 return -EFAULT;
527 return 0;
528 }
529 int copy_siginfo_to_user32(struct compat_siginfo __user *to,
530 const struct kernel_siginfo *from)
531 {
532 return __copy_siginfo_to_user32(to, from, in_x32_syscall());
533 }
534 #endif /* CONFIG_ARCH_COPY_SIGINFO_TO_USER32 */
535
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[android-common:android-4.19 42/106] arch/mips/include/asm/vdso/gettimeofday.h:94:31: error: '__NR_clock_getres_time64' undeclared
by kbuild test robot
tree: https://android.googlesource.com/kernel/common android-4.19
head: a1728ecf5aed447128ca7143f29d8b0f5f6263c5
commit: f3a6a2a287f2413be23e2caeb8462d3659749582 [42/106] UPSTREAM: mips: vdso: Fix source path
config: mips-ip32_defconfig (attached as .config)
compiler: mips64-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout f3a6a2a287f2413be23e2caeb8462d3659749582
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=mips
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
In file included from lib/vdso/gettimeofday.c:26,
from <command-line>:
arch/mips/include/asm/vdso/gettimeofday.h: In function 'clock_gettime_fallback':
arch/mips/include/asm/vdso/gettimeofday.h:70:31: error: '__NR_clock_gettime64' undeclared (first use in this function)
70 | register long nr asm("v0") = __NR_clock_gettime64;
| ^~~~~~~~~~~~~~~~~~~~
arch/mips/include/asm/vdso/gettimeofday.h:70:31: note: each undeclared identifier is reported only once for each function it appears in
arch/mips/include/asm/vdso/gettimeofday.h: In function 'clock_getres_fallback':
>> arch/mips/include/asm/vdso/gettimeofday.h:94:31: error: '__NR_clock_getres_time64' undeclared (first use in this function)
94 | register long nr asm("v0") = __NR_clock_getres_time64;
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from <command-line>:
lib/vdso/gettimeofday.c: In function '__cvdso_clock_gettime32':
lib/vdso/gettimeofday.c:113:6: error: dereferencing pointer to incomplete type 'struct compat_timespec'
113 | res->tv_sec = ts.tv_sec;
| ^~
vim +/__NR_clock_getres_time64 +94 arch/mips/include/asm/vdso/gettimeofday.h
6b7f832e465d88f Vincenzo Frascino 2019-06-21 83
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 84 static __always_inline int clock_getres_fallback(
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 85 clockid_t _clkid,
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 86 struct __kernel_timespec *_ts)
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 87 {
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 88 register struct __kernel_timespec *ts asm("a1") = _ts;
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 89 register clockid_t clkid asm("a0") = _clkid;
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 90 register long ret asm("v0");
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 91 #if _MIPS_SIM == _MIPS_SIM_ABI64
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 92 register long nr asm("v0") = __NR_clock_getres;
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 93 #else
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 @94 register long nr asm("v0") = __NR_clock_getres_time64;
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 95 #endif
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 96 register long error asm("a3");
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 97
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 98 asm volatile(
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 99 " syscall\n"
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 100 : "=r" (ret), "=r" (error)
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 101 : "r" (clkid), "r" (ts), "r" (nr)
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 102 : "$1", "$3", "$8", "$9", "$10", "$11", "$12", "$13",
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 103 "$14", "$15", "$24", "$25", "hi", "lo", "memory");
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 104
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 105 return error ? -ret : ret;
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 106 }
23dea1cf7ed3846 Vincenzo Frascino 2019-06-21 107
:::::: The code at line 94 was first introduced by commit
:::::: 23dea1cf7ed3846719448e74feeb56c28e3a9019 UPSTREAM: mips: Add clock_getres entry point
:::::: TO: Vincenzo Frascino <vincenzo.frascino(a)arm.com>
:::::: CC: Alistair Delva <adelva(a)google.com>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[hch-misc:set_fs-coredump 5/8] arch/x86/kernel/signal.c:518:24: error: storage size of 'new' isn't known
by kbuild test robot
tree: git://git.infradead.org/users/hch/misc.git set_fs-coredump
head: cc7765485f732e2a0f36a0f9ec36cefacb010b8e
commit: 5ca642c4c744ce6460ebb91fe30ec7a064d28e96 [5/8] signal: factor copy_siginfo_to_external32 from copy_siginfo_to_user32
config: i386-allyesconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
git checkout 5ca642c4c744ce6460ebb91fe30ec7a064d28e96
# save the attached .config to linux build tree
make ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
arch/x86/kernel/signal.c: In function '__copy_siginfo_to_user32':
>> arch/x86/kernel/signal.c:518:24: error: storage size of 'new' isn't known
struct compat_siginfo new;
^~~
>> arch/x86/kernel/signal.c:520:2: error: implicit declaration of function 'copy_siginfo_to_external32'; did you mean '__copy_siginfo_to_user32'? [-Werror=implicit-function-declaration]
copy_siginfo_to_external32(&new, from);
^~~~~~~~~~~~~~~~~~~~~~~~~~
__copy_siginfo_to_user32
>> arch/x86/kernel/signal.c:525:36: error: invalid application of 'sizeof' to incomplete type 'struct compat_siginfo'
if (copy_to_user(to, &new, sizeof(struct compat_siginfo)))
^~~~~~
arch/x86/kernel/signal.c:518:24: warning: unused variable 'new' [-Wunused-variable]
struct compat_siginfo new;
^~~
cc1: some warnings being treated as errors
vim +518 arch/x86/kernel/signal.c
513
514 #ifdef CONFIG_ARCH_COPY_SIGINFO_TO_USER32
515 int __copy_siginfo_to_user32(struct compat_siginfo __user *to,
516 const struct kernel_siginfo *from, bool x32_ABI)
517 {
> 518 struct compat_siginfo new;
519
> 520 copy_siginfo_to_external32(&new, from);
521 if (x32_ABI && from->si_signo == SIGCHLD) {
522 new._sifields._sigchld_x32._utime = from->si_utime;
523 new._sifields._sigchld_x32._stime = from->si_stime;
524 }
> 525 if (copy_to_user(to, &new, sizeof(struct compat_siginfo)))
526 return -EFAULT;
527 return 0;
528 }
529 int copy_siginfo_to_user32(struct compat_siginfo __user *to,
530 const struct kernel_siginfo *from)
531 {
532 return __copy_siginfo_to_user32(to, from, in_x32_syscall());
533 }
534 #endif /* CONFIG_ARCH_COPY_SIGINFO_TO_USER32 */
535
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks
[android-common:android-4.19 85/106] include/vdso/clocksource.h:9:10: fatal error: asm/vdso/clocksource.h: No such file or directory
by kbuild test robot
tree: https://android.googlesource.com/kernel/common android-4.19
head: a1728ecf5aed447128ca7143f29d8b0f5f6263c5
commit: 4358d4114f874146d26c0fb31393a9e4194486c3 [85/106] BACKPORT: linux/clocksource.h: Extract common header for vDSO
config: sparc-randconfig-a001-20200429 (attached as .config)
compiler: sparc64-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 4358d4114f874146d26c0fb31393a9e4194486c3
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=sparc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
In file included from include/linux/clocksource.h:30,
from include/linux/clockchips.h:14,
from include/linux/tick.h:8,
from fs/proc/stat.c:15:
>> include/vdso/clocksource.h:9:10: fatal error: asm/vdso/clocksource.h: No such file or directory
9 | #include <asm/vdso/clocksource.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
vim +9 include/vdso/clocksource.h
6
7 #if defined(CONFIG_ARCH_CLOCKSOURCE_DATA) || \
8 defined(CONFIG_GENERIC_GETTIMEOFDAY)
> 9 #include <asm/vdso/clocksource.h>
10 #endif /* CONFIG_ARCH_CLOCKSOURCE_DATA || CONFIG_GENERIC_GETTIMEOFDAY */
11
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
11 months, 3 weeks