aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallatin <gallatin@FreeBSD.org>2002-05-10 16:56:14 +0000
committerAndrew Gallatin <gallatin@FreeBSD.org>2002-05-10 16:56:14 +0000
commit8bef1df9eb520efde9f1a81874cb8db2da849468 (patch)
treef8293e74815e2d64bd91f98d5b5b3fce272d85b1
parent8eee3a3d58f8040dfd2a8fc8d8ad5e8ec61ae296 (diff)
Notes
-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 31a81a56b259b..73e5149da3e09 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)