summaryrefslogtreecommitdiffstats
path: root/sys/sparc64/pci
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-12-26 14:04:19 +0000
committerobrien <obrien@FreeBSD.org>2003-12-26 14:04:19 +0000
commit0d534ae12d22aa1d9fe911478887f7403c514a54 (patch)
treef569a730eceba47471f0c27bf4783bea3ff35f02 /sys/sparc64/pci
parent1b21a1fe2c33738dce97d11975713089fc5df04e (diff)
downloadFreeBSD-src-0d534ae12d22aa1d9fe911478887f7403c514a54.zip
FreeBSD-src-0d534ae12d22aa1d9fe911478887f7403c514a54.tar.gz
Don't confuse NULL with 0.
Diffstat (limited to 'sys/sparc64/pci')
-rw-r--r--sys/sparc64/pci/psycho.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sparc64/pci/psycho.c b/sys/sparc64/pci/psycho.c
index b6cbfbe..6e473cb 100644
--- a/sys/sparc64/pci/psycho.c
+++ b/sys/sparc64/pci/psycho.c
@@ -1078,7 +1078,7 @@ psycho_setup_intr(device_t dev, device_t child,
sc = (struct psycho_softc *)device_get_softc(dev);
pc = (struct psycho_clr *)malloc(sizeof(*pc), M_DEVBUF, M_NOWAIT);
if (pc == NULL)
- return (NULL);
+ return (0);
/*
* Hunt through all the interrupt mapping regs to look for our
@@ -1094,7 +1094,7 @@ psycho_setup_intr(device_t dev, device_t child,
if (!psycho_find_intrmap(sc, ino, &intrmapptr, &intrclrptr, NULL)) {
device_printf(dev, "Cannot find interrupt vector %lx\n", vec);
free(pc, M_DEVBUF);
- return (NULL);
+ return (0);
}
#ifdef PSYCHO_DEBUG
@@ -1225,7 +1225,7 @@ psycho_activate_resource(device_t bus, device_t child, int type, int rid,
* on the virtual address being set and useable.
*/
error = sparc64_bus_mem_map(rman_get_bustag(r),
- rman_get_bushandle(r), rman_get_size(r), 0, NULL, &p);
+ rman_get_bushandle(r), rman_get_size(r), 0, 0, &p);
if (error != 0)
return (error);
rman_set_virtual(r, p);
OpenPOWER on IntegriCloud