* [PATCH] - [3/15] - remove defconfig ptr comparisons to 0 - drivers/scsi/aic7xxx
@ 2007-11-14 2:04 Joe Perches
0 siblings, 0 replies; only message in thread
From: Joe Perches @ 2007-11-14 2:04 UTC (permalink / raw)
To: linux-kernel; +Cc: Linus Torvalds, James E.J. Bottomley, linux-scsi
Remove defconfig ptr comparison to 0
Remove sparse warning: Using plain integer as NULL pointer
Signed-off-by: Joe Perches <joe@perches.com>
---
diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c
index 4488946..223bad1 100644
--- a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c
+++ b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c
@@ -310,7 +310,7 @@ ahc_linux_pci_reserve_io_region(struct ahc_softc *ahc, u_long *base)
*base = pci_resource_start(ahc->dev_softc, 0);
if (*base == 0)
return (ENOMEM);
- if (request_region(*base, 256, "aic7xxx") == 0)
+ if (!request_region(*base, 256, "aic7xxx"))
return (ENOMEM);
return (0);
}
@@ -327,7 +327,7 @@ ahc_linux_pci_reserve_mem_region(struct ahc_softc *ahc,
start = pci_resource_start(ahc->dev_softc, 1);
if (start != 0) {
*bus_addr = start;
- if (request_mem_region(start, 0x1000, "aic7xxx") == 0)
+ if (!request_mem_region(start, 0x1000, "aic7xxx"))
error = ENOMEM;
if (error == 0) {
*maddr = ioremap_nocache(start, 256);
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-14 2:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-14 2:04 [PATCH] - [3/15] - remove defconfig ptr comparisons to 0 - drivers/scsi/aic7xxx Joe Perches
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox