]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OvmfPkg/Include/Library/LoadLinuxLib.h
OvmfPkg: Apply uncrustify changes
[mirror_edk2.git] / OvmfPkg / Include / Library / LoadLinuxLib.h
index 483f8d4b9cfc21724cd8e9fe0abbfbd03b4c935b..65f5895bfc6ba3acfda3237705754f9c8f15e89b 100644 (file)
@@ -9,7 +9,6 @@
 #ifndef __LOAD_LINUX_LIB__\r
 #define __LOAD_LINUX_LIB__\r
 \r
-\r
 /**\r
   Verifies that the kernel setup image is valid and supported.\r
   The kernel setup image should be checked before using other library\r
 EFI_STATUS\r
 EFIAPI\r
 LoadLinuxCheckKernelSetup (\r
-  IN VOID        *KernelSetup,\r
-  IN UINTN       KernelSetupSize\r
+  IN VOID   *KernelSetup,\r
+  IN UINTN  KernelSetupSize\r
   );\r
 \r
-\r
 /**\r
   Gets the initial runtime size of the Linux kernel image by examining\r
   the kernel setup image.\r
@@ -46,11 +44,10 @@ LoadLinuxCheckKernelSetup (
 UINTN\r
 EFIAPI\r
 LoadLinuxGetKernelSize (\r
-  IN VOID        *KernelSetup,\r
-  IN UINTN       KernelSize\r
+  IN VOID   *KernelSetup,\r
+  IN UINTN  KernelSize\r
   );\r
 \r
-\r
 /**\r
   Loads and boots UEFI Linux.\r
 \r
@@ -71,7 +68,6 @@ LoadLinux (
   IN OUT VOID  *KernelSetup\r
   );\r
 \r
-\r
 /**\r
   Allocates pages for the kernel setup image.\r
 \r
@@ -81,13 +77,12 @@ LoadLinux (
   @retval    !NULL - The address of the pages allocated\r
 \r
 **/\r
-VOID*\r
+VOID *\r
 EFIAPI\r
 LoadLinuxAllocateKernelSetupPages (\r
-  IN UINTN                  Pages\r
+  IN UINTN  Pages\r
   );\r
 \r
-\r
 /**\r
   Clears the uninitialised space before and after the struct setup_header\r
   in the kernel setup image. The kernel requires that these be zeroed\r
@@ -105,7 +100,7 @@ LoadLinuxAllocateKernelSetupPages (
 EFI_STATUS\r
 EFIAPI\r
 LoadLinuxInitializeKernelSetup (\r
-  IN VOID        *KernelSetup\r
+  IN VOID  *KernelSetup\r
   );\r
 \r
 /**\r
@@ -119,14 +114,13 @@ LoadLinuxInitializeKernelSetup (
   @retval    !NULL - The address of the pages allocated\r
 \r
 **/\r
-VOID*\r
+VOID *\r
 EFIAPI\r
 LoadLinuxAllocateKernelPages (\r
-  IN VOID                   *KernelSetup,\r
-  IN UINTN                  Pages\r
+  IN VOID   *KernelSetup,\r
+  IN UINTN  Pages\r
   );\r
 \r
-\r
 /**\r
   Allocates pages for the kernel command line.\r
 \r
@@ -136,13 +130,12 @@ LoadLinuxAllocateKernelPages (
   @retval    !NULL - The address of the pages allocated\r
 \r
 **/\r
-VOID*\r
+VOID *\r
 EFIAPI\r
 LoadLinuxAllocateCommandLinePages (\r
-  IN UINTN                  Pages\r
+  IN UINTN  Pages\r
   );\r
 \r
-\r
 /**\r
   Allocates pages for the initrd image.\r
 \r
@@ -153,14 +146,13 @@ LoadLinuxAllocateCommandLinePages (
   @retval    !NULL - The address of the pages allocated\r
 \r
 **/\r
-VOID*\r
+VOID *\r
 EFIAPI\r
 LoadLinuxAllocateInitrdPages (\r
-  IN VOID                   *KernelSetup,\r
-  IN UINTN                  Pages\r
+  IN VOID   *KernelSetup,\r
+  IN UINTN  Pages\r
   );\r
 \r
-\r
 /**\r
   Sets the kernel command line parameter within the setup image.\r
 \r
@@ -175,11 +167,10 @@ LoadLinuxAllocateInitrdPages (
 EFI_STATUS\r
 EFIAPI\r
 LoadLinuxSetCommandLine (\r
-  IN OUT VOID    *KernelSetup,\r
-  IN CHAR8       *CommandLine\r
+  IN OUT VOID  *KernelSetup,\r
+  IN CHAR8     *CommandLine\r
   );\r
 \r
-\r
 /**\r
   Sets the kernel initial ram disk pointer within the setup image.\r
 \r
@@ -195,11 +186,9 @@ LoadLinuxSetCommandLine (
 EFI_STATUS\r
 EFIAPI\r
 LoadLinuxSetInitrd (\r
-  IN OUT VOID    *KernelSetup,\r
-  IN VOID        *Initrd,\r
-  IN UINTN       InitrdSize\r
+  IN OUT VOID  *KernelSetup,\r
+  IN VOID      *Initrd,\r
+  IN UINTN     InitrdSize\r
   );\r
 \r
-\r
 #endif\r
-\r