diff options
Diffstat (limited to 'drivers/dio')
-rw-r--r-- | drivers/dio/dio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dio/dio.c b/drivers/dio/dio.c index 36ffa3c839f5..005a82f671c3 100644 --- a/drivers/dio/dio.c +++ b/drivers/dio/dio.c @@ -94,6 +94,7 @@ static const char *dio_getname(int id) { /* return pointer to a constant string describing the board with given ID */ unsigned int i; + for (i = 0; i < ARRAY_SIZE(names); i++) if (names[i].id == id) return names[i].name; |