From 8bef1df9eb520efde9f1a81874cb8db2da849468 Mon Sep 17 00:00:00 2001 From: Andrew Gallatin Date: Fri, 10 May 2002 16:56:14 +0000 Subject: [PATCH] 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). --- sys/alpha/pci/irongate_pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/alpha/pci/irongate_pci.c b/sys/alpha/pci/irongate_pci.c index 31a81a56b25..73e5149da3e 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)