* [android-common:android15-6.6-2026-04 1/1] arch/arm64/kvm/hyp/nvhe/serial.c:42:6: warning: no previous prototype for 'hyp_puts'
@ 2026-07-17 10:44 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-07-17 10:44 UTC (permalink / raw)
To: cros-kernel-buildreports; +Cc: oe-kbuild-all
tree: https://android.googlesource.com/kernel/common android15-6.6-2026-04
head: 33b6171ad078b267e1bfa3617dbe417681d7d02f
commit: 485b479fee4fbb2f2b8ac3bce7cc7f994b300303 [1/1] ANDROID: KVM: arm64: Add serial framework for pKVM
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20260717/202607171851.qBhbVcZ5-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260717/202607171851.qBhbVcZ5-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202607171851.qBhbVcZ5-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/arm64/kvm/hyp/nvhe/serial.c:42:6: warning: no previous prototype for 'hyp_puts' [-Wmissing-prototypes]
42 | void hyp_puts(const char *s)
| ^~~~~~~~
>> arch/arm64/kvm/hyp/nvhe/serial.c:54:6: warning: no previous prototype for 'hyp_putx64' [-Wmissing-prototypes]
54 | void hyp_putx64(u64 x)
| ^~~~~~~~~~
arch/arm64/kvm/hyp/nvhe/serial.c:60:6: warning: no previous prototype for 'hyp_putc' [-Wmissing-prototypes]
60 | void hyp_putc(char c)
| ^~~~~~~~
>> arch/arm64/kvm/hyp/nvhe/serial.c:66:5: warning: no previous prototype for '__pkvm_register_serial_driver' [-Wmissing-prototypes]
66 | int __pkvm_register_serial_driver(void (*cb)(char))
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/hyp_puts +42 arch/arm64/kvm/hyp/nvhe/serial.c
41
> 42 void hyp_puts(const char *s)
43 {
44 if (!hyp_serial_enabled())
45 return;
46
47 while (*s)
48 __hyp_putc(*s++);
49
50 __hyp_putc('\n');
51 __hyp_putc('\r');
52 }
53
> 54 void hyp_putx64(u64 x)
55 {
56 if (hyp_serial_enabled())
57 __hyp_putx4n(x, 64);
58 }
59
60 void hyp_putc(char c)
61 {
62 if (hyp_serial_enabled())
63 __hyp_putc(c);
64 }
65
> 66 int __pkvm_register_serial_driver(void (*cb)(char))
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-17 10:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17 10:44 [android-common:android15-6.6-2026-04 1/1] arch/arm64/kvm/hyp/nvhe/serial.c:42:6: warning: no previous prototype for 'hyp_puts' kernel test robot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.