]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/block/ahci.c
Consolidate bool type
[karo-tx-uboot.git] / drivers / block / ahci.c
index 8c785ae923ffa30d930ab43262f06fc13a990148..cab7f8c7ad9f44a609fcf909e38af0a7b4777d1d 100644 (file)
@@ -865,14 +865,14 @@ int scsi_exec(ccb *pccb)
                break;
        default:
                printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
-               return FALSE;
+               return false;
        }
 
        if (ret) {
                debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
-               return FALSE;
+               return false;
        }
-       return TRUE;
+       return true;
 
 }