[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 <[email protected]>
| Newsgroups | dev.linux.lists.oe-kbuild-all |
|---|---|
| Message-ID | <[email protected]> |
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/[email protected]/config) compiler: aarch64-linux-gcc (GCC) 16.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260717/[email protected]/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 <[email protected]> | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ 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