aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)