diff options
author | Mike Nicholson <mike.nicholson@multitech.com> | 2019-01-10 16:18:26 -0600 |
---|---|---|
committer | Mike Nicholson <mike.nicholson@multitech.com> | 2019-01-10 16:18:26 -0600 |
commit | e904e12800d69d923fc11a5baa20de62123c0639 (patch) | |
tree | e3055e434bfa248d754c1b6086505f093e040610 | |
parent | e0b832a1ed36184e84566d2894fb92275b075b65 (diff) | |
download | mtac-gpiob-e904e12800d69d923fc11a5baa20de62123c0639.tar.gz mtac-gpiob-e904e12800d69d923fc11a5baa20de62123c0639.tar.bz2 mtac-gpiob-e904e12800d69d923fc11a5baa20de62123c0639.zip |
Use correct parameter type for mtac_find1.1.1a
-rw-r--r-- | mtac_gpiob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mtac_gpiob.c b/mtac_gpiob.c index 4aaecaf..ba16d89 100644 --- a/mtac_gpiob.c +++ b/mtac_gpiob.c @@ -751,7 +751,7 @@ static bool gpiob_teardown(enum ap port) { return true; } -bool set_gpiob_info(struct ap_info* info) { +void set_gpiob_info(struct ap_info* info) { snprintf(info->product_id, 32, "%s", PRODUCT_ID_MTAC_GPIOB); info->setup = &gpiob_setup; info->teardown = &gpiob_teardown; |