diff options
author | John Klug <john.klug@multitech.com> | 2018-10-25 18:06:42 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-10-25 18:06:42 -0500 |
commit | e0b832a1ed36184e84566d2894fb92275b075b65 (patch) | |
tree | 4464d80b0992d1d5a30ff5ca84e16b549531437c | |
parent | f4383d1f095b4fc9706564b3f784f8fda2e1e9d9 (diff) | |
download | mtac-gpiob-1.1.1.tar.gz mtac-gpiob-1.1.1.tar.bz2 mtac-gpiob-1.1.1.zip |
Use the correct setup function in mtac_gpiob_exit1.1.1
-rw-r--r-- | mtac_gpiob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mtac_gpiob.c b/mtac_gpiob.c index 5230670..4aaecaf 100644 --- a/mtac_gpiob.c +++ b/mtac_gpiob.c @@ -1,4 +1,4 @@ -#define DRIVER_VERSION "v1.1.0" +#define DRIVER_VERSION "v1.1.1" #define DRIVER_AUTHOR "John Klug <john.klug@multitech.com>" #define DRIVER_DESC "MTS General Purpose I/O Accessory Card" #define DRIVER_NAME "mtac-gpiob" @@ -785,7 +785,7 @@ static int __init mtac_gpiob_init(void) /* We can only tear down our own device */ static void __exit mtac_gpiob_exit(void) { - mtac_free(PRODUCT_ID_MTAC_GPIOB,eth_gpiob,"gpiob"); + mtac_free(PRODUCT_ID_MTAC_GPIOB,gpiob_setup,"gpiob"); log_info("exiting"); } |