summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/alpha/pci/tsunami_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/pci/tsunami_pci.c b/sys/alpha/pci/tsunami_pci.c
index 9af0ddc..c349be8 100644
--- a/sys/alpha/pci/tsunami_pci.c
+++ b/sys/alpha/pci/tsunami_pci.c
@@ -201,7 +201,7 @@ tsunami_check_abort(void)
tsunami_check_abort(); \
return ~0; \
} \
- data = ##op##(va); \
+ data = op(va); \
if (tsunami_check_abort()) \
return ~0; \
return data; \
@@ -213,7 +213,7 @@ tsunami_check_abort(void)
tsunami_clear_abort(); \
if (badaddr((caddr_t)va, width)) \
return; \
- ##op##(va, data); \
+ op(va, data); \
tsunami_check_abort(); \
} while (0)
OpenPOWER on IntegriCloud