summaryrefslogtreecommitdiffstats
path: root/sys/alpha/pci
diff options
context:
space:
mode:
authorgallatin <gallatin@FreeBSD.org>2002-05-10 16:56:14 +0000
committergallatin <gallatin@FreeBSD.org>2002-05-10 16:56:14 +0000
commit2c68741e42b63cbea680a80f2ccc35215120dc8c (patch)
treef8293e74815e2d64bd91f98d5b5b3fce272d85b1 /sys/alpha/pci
parent5bb8b3f421d30613dd6565a866bfbe2a5acb6491 (diff)
downloadFreeBSD-src-2c68741e42b63cbea680a80f2ccc35215120dc8c.zip
FreeBSD-src-2c68741e42b63cbea680a80f2ccc35215120dc8c.tar.gz
Remove ## concatination in the CFGREAD and CFGWRITE macros, as gcc3 complains
about them & they are not needed. Same fix as to tsunami_pci.c. (not surprising, as this code was cut and pasted from there when I wrote it).
Diffstat (limited to 'sys/alpha/pci')
-rw-r--r--sys/alpha/pci/irongate_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/pci/irongate_pci.c b/sys/alpha/pci/irongate_pci.c
index 31a81a5..73e5149 100644
--- a/sys/alpha/pci/irongate_pci.c
+++ b/sys/alpha/pci/irongate_pci.c
@@ -132,7 +132,7 @@ irongate_check_abort(void)
irongate_check_abort(); \
return ~0; \
} \
- data = ##op##(va); \
+ data = op(va); \
if (irongate_check_abort()) \
return ~0; \
return data; \
@@ -144,7 +144,7 @@ irongate_check_abort(void)
irongate_clear_abort(); \
if (badaddr((caddr_t)va, width)) \
return; \
- ##op##(va, data); \
+ op(va, data); \
irongate_check_abort(); \
} while (0)
OpenPOWER on IntegriCloud