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).
This commit is contained in:
Andrew Gallatin 2002-05-10 16:56:14 +00:00
parent 8eee3a3d58
commit 8bef1df9eb

View File

@ -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)