From 7ea11f0dd33d959a0271efeaa4c17fd26fe27196 Mon Sep 17 00:00:00 2001 From: Henry Bruce Date: Thu, 3 Dec 2015 12:30:59 -0800 Subject: [PATCH] mraa.c: iio detect tidy up. Signed-off-by: Henry Bruce --- src/mraa.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/mraa.c b/src/mraa.c index 01d6d1d..28a2c4a 100644 --- a/src/mraa.c +++ b/src/mraa.c @@ -73,15 +73,6 @@ mraa_set_log_level(int level) return MRAA_ERROR_INVALID_PARAMETER; } -static int -mraa_count_iio_devices(const char* path, const struct stat* sb, int flag, struct FTW* ftwb) -{ - // we are only interested in files with specific names - if (fnmatch(IIO_DEVICE_WILDCARD, basename(path), 0) == 0) { - num_iio_devices++; - } - return 0; -} #if (defined SWIGPYTHON) || (defined SWIG) mraa_result_t @@ -155,7 +146,7 @@ mraa_init() mraa_result_t iio_result = mraa_iio_detect(); if (iio_result != MRAA_SUCCESS) return iio_result; - + syslog(LOG_NOTICE, "libmraa initialised for platform '%s' of type %d", mraa_get_platform_name(), mraa_get_platform_type()); return MRAA_SUCCESS; } @@ -198,6 +189,15 @@ mraa_set_priority(const unsigned int priority) return sched_setscheduler(0, SCHED_RR, &sched_s); } +static int +mraa_count_iio_devices(const char* path, const struct stat* sb, int flag, struct FTW* ftwb) +{ + // we are only interested in files with specific names + if (fnmatch(IIO_DEVICE_WILDCARD, basename(path), 0) == 0) { + num_iio_devices++; + } + return 0; +} mraa_result_t mraa_iio_detect() -- 2.7.4