diff options
| author | Andrew Gallatin <gallatin@FreeBSD.org> | 2002-05-10 16:56:14 +0000 |
|---|---|---|
| committer | Andrew Gallatin <gallatin@FreeBSD.org> | 2002-05-10 16:56:14 +0000 |
| commit | 8bef1df9eb520efde9f1a81874cb8db2da849468 (patch) | |
| tree | f8293e74815e2d64bd91f98d5b5b3fce272d85b1 /sys/alpha | |
| parent | 8eee3a3d58f8040dfd2a8fc8d8ad5e8ec61ae296 (diff) | |
Notes
Diffstat (limited to 'sys/alpha')
| -rw-r--r-- | sys/alpha/pci/irongate_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/pci/irongate_pci.c b/sys/alpha/pci/irongate_pci.c index 31a81a56b259..73e5149da3e0 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) |
