diff options
author | 2013-09-12 02:55:03 +0000 | |
---|---|---|
committer | 2013-09-12 02:55:03 +0000 | |
commit | fe80a8a628a8819a60bfdfe0a8ec6b540ee20fbb (patch) | |
tree | f9e6dab505e565ddb1589e0fc50f7e1c1b7c1922 | |
parent | dont print out where the rx and tx descs are. noone cares. (diff) | |
download | wireguard-openbsd-fe80a8a628a8819a60bfdfe0a8ec6b540ee20fbb.tar.xz wireguard-openbsd-fe80a8a628a8819a60bfdfe0a8ec6b540ee20fbb.zip |
get rid of unused macros
-rw-r--r-- | sys/arch/armv7/omap/if_cpsw.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/armv7/omap/if_cpsw.c b/sys/arch/armv7/omap/if_cpsw.c index 2a3473af796..4fbe5b7c464 100644 --- a/sys/arch/armv7/omap/if_cpsw.c +++ b/sys/arch/armv7/omap/if_cpsw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cpsw.c,v 1.13 2013/09/12 02:20:17 dlg Exp $ */ +/* $OpenBSD: if_cpsw.c,v 1.14 2013/09/12 02:55:03 dlg Exp $ */ /* $NetBSD: if_cpsw.c,v 1.3 2013/04/17 14:36:34 bouyer Exp $ */ /* @@ -119,12 +119,6 @@ /* find least significant bit that is set */ #define __LOWEST_SET_BIT(__mask) ((((__mask) - 1) & (__mask)) ^ (__mask)) -#define __PRIuBIT PRIuMAX -#define __PRIuBITS __PRIuBIT - -#define __PRIxBIT PRIxMAX -#define __PRIxBITS __PRIxBIT - #define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask)) struct cpsw_ring_data { |