virt: acrn: Fix typos
authorThorsten Blum <thorsten.blum@toblux.com>
Thu, 18 Apr 2024 21:41:45 +0000 (23:41 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 4 May 2024 16:59:44 +0000 (18:59 +0200)
- 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>
samples/acrn/vm-sample.c

index 704402c64ea3c9a44eae9e55aace5a5623583286..c61e0f91456e09a4e1bd5a900448a26e298293d1 100644 (file)
@@ -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.
  *
@@ -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);