Skip to content

Commit

Permalink
virt: acrn: Fix typos
Browse files Browse the repository at this point in the history
- s/need/needs/
- s/No/Not/

Signed-off-by: Thorsten Blum <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
toblux authored and gregkh committed May 4, 2024
1 parent 5c9c5d7 commit 203b283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/acrn/vm-sample.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* A sample program to run a User VM on the ACRN hypervisor
*
* This sample runs in a Service VM, which is a privileged VM of ACRN.
* CONFIG_ACRN_HSM need to be enabled in the Service VM.
* CONFIG_ACRN_HSM needs to be enabled in the Service VM.
*
* Guest VM code in guest16.s will be executed after the VM launched.
*
Expand Down Expand Up @@ -55,7 +55,7 @@ int main(int argc, char **argv)

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

0 comments on commit 203b283

Please sign in to comment.