summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-08-09 15:53:25 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-08-09 15:53:25 +0000
commite06ee0865db8587a353605c9dd98d1a5db5de817 (patch)
tree8f0835944010065f211f9187bf7eb0bf3b13cd27 /sys/dev
parent042d8b4486959327ace3951ccff02a961aab6565 (diff)
Change #if __LP64__ to #ifdef __LP64__ as requested by brad
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_bnxreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bnxreg.h b/sys/dev/pci/if_bnxreg.h
index f2cbef78e9d..7af2863951b 100644
--- a/sys/dev/pci/if_bnxreg.h
+++ b/sys/dev/pci/if_bnxreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bnxreg.h,v 1.2 2006/08/09 15:49:49 marco Exp $ */
+/* $OpenBSD: if_bnxreg.h,v 1.3 2006/08/09 15:53:24 marco Exp $ */
/*-
* Copyright (c) 2006 Broadcom Corporation
@@ -686,7 +686,7 @@ struct flash_spec {
#define BNX_STATS(x) (u_long) stats->stat_ ## x ## _lo
-#if __LP64__
+#ifdef __LP64__
#define BNX_ADDR_LO(y) ((u64)(y) & 0xffffffff)
#define BNX_ADDR_HI(y) ((u64)(y) >> 32)
#else