ata: libata-sff: make ata_resources_present() return 'bool'
[linux-2.6-microblaze.git] / drivers / ata / libata-sff.c
index 546b1f7..f5e4cd0 100644 (file)
@@ -2174,18 +2174,18 @@ EXPORT_SYMBOL_GPL(ata_sff_std_ports);
 
 #ifdef CONFIG_PCI
 
-static int ata_resources_present(struct pci_dev *pdev, int port)
+static bool ata_resources_present(struct pci_dev *pdev, int port)
 {
        int i;
 
        /* Check the PCI resources for this channel are enabled */
-       port = port * 2;
+       port *= 2;
        for (i = 0; i < 2; i++) {
                if (pci_resource_start(pdev, port + i) == 0 ||
                    pci_resource_len(pdev, port + i) == 0)
-                       return 0;
+                       return false;
        }
-       return 1;
+       return true;
 }
 
 /**