Skip to content

Commit 203b283

Browse files
tobluxgregkh
authored andcommitted
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>
1 parent 5c9c5d7 commit 203b283

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

samples/acrn/vm-sample.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* A sample program to run a User VM on the ACRN hypervisor
44
*
55
* 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.
77
*
88
* Guest VM code in guest16.s will be executed after the VM launched.
99
*
@@ -55,7 +55,7 @@ int main(int argc, char **argv)
5555

5656
ret = posix_memalign(&guest_memory, 4096, GUEST_MEMORY_SIZE);
5757
if (ret < 0) {
58-
printf("No enough memory!\n");
58+
printf("Not enough memory!\n");
5959
return -1;
6060
}
6161
hsm_fd = open("/dev/acrn_hsm", O_RDWR|O_CLOEXEC);

0 commit comments

Comments
 (0)