]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/net/npe/IxEthDBUtil.c
Update from 2013.01 to 2013.07
[karo-tx-uboot.git] / drivers / net / npe / IxEthDBUtil.c
index e708bf1bce647895016f1533870b7fc0726879f0..24acc246b79ca642983d1f878785903dc7749d25 100644 (file)
@@ -94,13 +94,13 @@ BOOL ixEthDBCheckSingleBitValue(UINT32 value)
        
     while (value != 0)
     {
-        if (value == 1) return TRUE;
-        else if ((value & 1) == 1) return FALSE;
+        if (value == 1) return true;
+        else if ((value & 1) == 1) return false;
 
         value >>= 1;
     }
     
-    return FALSE;
+    return false;
 
 #endif
 }