devices/ccat/module-3.4-ethercat.c
branchstable-1.5
changeset 2552 6e419c23b1b3
parent 2551 000da5069f1a
--- a/devices/ccat/module-3.4-ethercat.c	Mon Apr 07 07:31:50 2014 +0200
+++ b/devices/ccat/module-3.4-ethercat.c	Wed Apr 23 13:15:10 2014 +0200
@@ -22,6 +22,7 @@
 #include <linux/etherdevice.h>
 #include <linux/module.h>
 #include <linux/netdevice.h>
+#include "compat.h"
 #include "module.h"
 #include "netdev.h"
 #include "update.h"
@@ -295,8 +296,8 @@
 
 static int ccat_init_module(void)
 {
-	static const size_t offset = offsetof(struct ccat_eth_frame, data);
-	BUILD_BUG_ON(offset != CCAT_DMA_FRAME_HEADER_LENGTH);
+	BUILD_BUG_ON(offsetof(struct ccat_eth_frame, data) !=
+		     CCAT_DMA_FRAME_HEADER_LENGTH);
 	pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
 	return pci_register_driver(&pci_driver);
 }