b43-fwcutter: Add 5 new drivers to cut list
[b43-tools.git] / fwcutter / fwcutter.h
index 2e47073cc7db47def23717b6e33fce13303f659e..783c6b4351dc32f71ad10cd46659c06646d66514 100644 (file)
@@ -9,10 +9,13 @@
 #define fwcutter_stringify(x)  fwcutter_stringify_1(x)
 #define FWCUTTER_VERSION       fwcutter_stringify(FWCUTTER_VERSION_)
 
+#undef ARRAY_SIZE
+#define ARRAY_SIZE(array)      (sizeof(array) / sizeof((array)[0]))
+
 typedef uint16_t be16_t; /* Big-endian 16bit */
 typedef uint32_t be32_t; /* Big-endian 32bit */
 
-#ifdef __DragonFly__
+#if defined(__DragonFly__) || defined(__FreeBSD__)
 #define bswap_16       bswap16
 #define bswap_32       bswap32
 #endif
@@ -65,6 +68,7 @@ struct extract {
 
 struct file {
        const char *name;
+       const char *id;
        const char *ucode_version;
        const char *md5;
        const struct extract *extract;