Coding style cleanup
[platform/kernel/u-boot.git] / board / MAI / bios_emulator / scitech / src / common / aavxd.c
index 295533d..221b02b 100644 (file)
@@ -71,8 +71,8 @@ Nucleus loader library.
 ibool NAPI GA_TimerInit(void)
 {
     if (_GA_haveCPUID() && (_GA_getCPUIDFeatures() & CPU_HaveRDTSC) != 0) {
-        haveRDTSC = true;
-        }
+       haveRDTSC = true;
+       }
     return true;
 }
 
@@ -84,7 +84,7 @@ void NAPI GA_TimerRead(
     GA_largeInteger *value)
 {
     if (haveRDTSC)
-        _GA_readTimeStamp(value);
+       _GA_readTimeStamp(value);
     else
-        VTD_Get_Real_Time(&value->high,&value->low);
+       VTD_Get_Real_Time(&value->high,&value->low);
 }