diff options
Diffstat (limited to 'io-module/mts_io.h')
-rw-r--r-- | io-module/mts_io.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/io-module/mts_io.h b/io-module/mts_io.h index b622330..57f07af 100644 --- a/io-module/mts_io.h +++ b/io-module/mts_io.h @@ -4,7 +4,13 @@ #include "mts_eeprom.h" #include <linux/gpio.h> -#define DEBUG 0 + +#define DRIVER_VERSION "v2.0.5" +#define DRIVER_AUTHOR "James Maki <jmaki@multitech.com>" +#define DRIVER_DESC "MTS-IO Controller" +#define DRIVER_NAME "mts-io" + +#define DEBUG 1 #define __log(level, name, format, args...) \ printk(level "[" name "] " DRIVER_NAME ":%s:%d: " format "\n" , \ @@ -148,5 +154,7 @@ struct ap_info { char* (*gpio_pin_name_by_attr_name)(const char* name, int port); }; +extern struct mutex mts_io_mutex; + #endif /* ~__MTS_IO_H */ |