Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

virt: acrn: Fix typos

- s/need/needs/
- s/No/Not/

Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Link: https://lore.kernel.org/r/20240418214143.1253-3-thorsten.blum@toblux.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Thorsten Blum and committed by
Greg Kroah-Hartman
203b283c 5c9c5d7f

+2 -2
+2 -2
samples/acrn/vm-sample.c
··· 3 3 * A sample program to run a User VM on the ACRN hypervisor 4 4 * 5 5 * This sample runs in a Service VM, which is a privileged VM of ACRN. 6 - * CONFIG_ACRN_HSM need to be enabled in the Service VM. 6 + * CONFIG_ACRN_HSM needs to be enabled in the Service VM. 7 7 * 8 8 * Guest VM code in guest16.s will be executed after the VM launched. 9 9 * ··· 55 55 56 56 ret = posix_memalign(&guest_memory, 4096, GUEST_MEMORY_SIZE); 57 57 if (ret < 0) { 58 - printf("No enough memory!\n"); 58 + printf("Not enough memory!\n"); 59 59 return -1; 60 60 } 61 61 hsm_fd = open("/dev/acrn_hsm", O_RDWR|O_CLOEXEC);