[FORMATTING] Remove trailing whitespace. Addendum to 34593d93.
[reactos.git] / boot / armllb / hw / omap3-zoom2 / hwinit.c
index 37749a6..4b98f8e 100644 (file)
@@ -61,18 +61,18 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap)
 {
     PBIOS_MEMORY_MAP MapEntry;
     ULONG Base, Size, FsBase, FsSize;
-    
+
     /* Parse hardware memory map */
     MapEntry = LlbHwOmap3MemoryMap;
     while (MapEntry->Length)
     {
         /* Add this entry */
         LlbAllocateMemoryEntry(MapEntry->Type, MapEntry->BaseAddress, MapEntry->Length);
-        
+
         /* Move to the next one */
         MapEntry++;
     }
-    
+
     /* Query memory and RAMDISK information */
     LlbEnvGetMemoryInformation(&Base, &Size);
     LlbEnvGetRamDiskInformation(&FsBase, &FsSize);
@@ -80,10 +80,10 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap)
 #ifdef _BEAGLE_
     /* Add-in the size of the ramdisk */
     Base = FsBase + FsSize;
-    
+
     /* Subtract size of ramdisk and anything else before it */
     Size -= Base;
-    
+
     /* Allocate an entry for it */
     LlbAllocateMemoryEntry(BiosMemoryUsable, Base, Size);
 #endif
@@ -95,10 +95,10 @@ LlbHwInitialize(VOID)
 {
     /* Setup the UART (NS16550) */
     LlbHwOmap3UartInitialize();
-    
+
     /* Setup the NEC WVGA LCD Panel and the Display Controller */
     LlbHwOmap3LcdInitialize();
-    
+
     /* Setup the keyboard */
     LlbHwOmap3SynKpdInitialize();
 }