1 #ifndef __IB_INTFC_H__ 2 #define __IB_INTFC_H__ 3 4 /* $FreeBSD$ */ 5 6 #undef prefetch 7 #undef WARN_ON 8 #undef max_t 9 #undef udelay 10 #undef le32_to_cpu 11 #undef le16_to_cpu 12 #undef cpu_to_le32 13 #undef swab32 14 #undef container_of 15 16 #undef LIST_HEAD 17 #define LIST_HEAD(name, type) \ 18 struct name { \ 19 struct type *lh_first; /* first element */ \ 20 } 21 22 #endif /* __IB_INTFC_H__ */ 23