aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Sojka <sojkam1@fel.cvut.cz>2009-01-14 14:02:38 +0100
committerJeff Garzik <jgarzik@redhat.com>2009-01-16 10:23:58 -0500
commite4ac522bd7261829197a3d01d5feedb2aca8ae38 (patch)
treef5164aea02d44e7f38352da14800627862d0ea25
parentdrivers/ata/pata_ali.c: s/isa_bridge/ali_isa_bridge/ to fix alpha build (diff)
downloadlinux-dev-e4ac522bd7261829197a3d01d5feedb2aca8ae38.tar.xz
linux-dev-e4ac522bd7261829197a3d01d5feedb2aca8ae38.zip
sata_fsl: Return non-zero on error in probe()
while I was looking over kernel sources I've found this small bug. Formerly, zero was returned even if an error happened. Signed-off-by: Michal Sojka <sojkam1@fel.cvut.cz> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r--drivers/ata/sata_fsl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c
index 1a56db92ff7a..55bc88c1707b 100644
--- a/drivers/ata/sata_fsl.c
+++ b/drivers/ata/sata_fsl.c
@@ -1288,7 +1288,7 @@ static const struct ata_port_info sata_fsl_port_info[] = {
static int sata_fsl_probe(struct of_device *ofdev,
const struct of_device_id *match)
{
- int retval = 0;
+ int retval = -ENXIO;
void __iomem *hcr_base = NULL;
void __iomem *ssr_base = NULL;
void __iomem *csr_base = NULL;