summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2014-04-24 12:52:46 -0500
committerMike Fiore <mfiore@multitech.com>2014-04-24 12:52:46 -0500
commitfb0cddc68ee95d61cd2af4889b18bf3d6ddd01d2 (patch)
tree5119be0b92a979d330562bb33b9c0a8a65362758
parentf8f7b9f52873e561c271fca183e7950b654856ea (diff)
downloadcdp-io-controller-fb0cddc68ee95d61cd2af4889b18bf3d6ddd01d2.tar.gz
cdp-io-controller-fb0cddc68ee95d61cd2af4889b18bf3d6ddd01d2.tar.bz2
cdp-io-controller-fb0cddc68ee95d61cd2af4889b18bf3d6ddd01d2.zip
mts-io: move definition of BIT() to mts_eeprom.hv0.9.0
-rw-r--r--io-module/mts_eeprom.h4
-rw-r--r--io-module/mts_io.h6
2 files changed, 4 insertions, 6 deletions
diff --git a/io-module/mts_eeprom.h b/io-module/mts_eeprom.h
index 6356516..d6c3bd3 100644
--- a/io-module/mts_eeprom.h
+++ b/io-module/mts_eeprom.h
@@ -3,6 +3,10 @@
#if !__KERNEL__
#include <stdint.h>
+
+#ifndef BIT
+#define BIT(nr) (1UL << (nr))
+#endif
#endif
/* on-board EEPROM */
diff --git a/io-module/mts_io.h b/io-module/mts_io.h
index 0540434..ad82b2a 100644
--- a/io-module/mts_io.h
+++ b/io-module/mts_io.h
@@ -1,12 +1,6 @@
#ifndef __MTS_IO_H
#define __MTS_IO_H
-#if !__KERNEL__
-#ifndef BIT
-#define BIT(nr) (1UL << (nr))
-#endif
-#endif
-
#include "mts_eeprom.h"
#include <linux/gpio.h>