|
|
@ -36,10 +36,10 @@ |
|
|
|
#include "logging.h" |
|
|
|
#include "logging.h" |
|
|
|
#include "miner.h" |
|
|
|
#include "miner.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBUDEV |
|
|
|
char |
|
|
|
char |
|
|
|
serial_autodetect_udev(detectone_func_t detectone, const char*prodname) |
|
|
|
serial_autodetect_udev(detectone_func_t detectone, const char*prodname) |
|
|
|
{ |
|
|
|
{ |
|
|
|
#ifdef HAVE_LIBUDEV |
|
|
|
|
|
|
|
if (total_devices == MAX_DEVICES) |
|
|
|
if (total_devices == MAX_DEVICES) |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
|
|
|
|
|
|
|
@ -72,10 +72,14 @@ serial_autodetect_udev(detectone_func_t detectone, const char*prodname) |
|
|
|
udev_unref(udev); |
|
|
|
udev_unref(udev); |
|
|
|
|
|
|
|
|
|
|
|
return found; |
|
|
|
return found; |
|
|
|
|
|
|
|
} |
|
|
|
#else |
|
|
|
#else |
|
|
|
|
|
|
|
char |
|
|
|
|
|
|
|
serial_autodetect_udev(__maybe_unused detectone_func_t detectone, __maybe_unused const char*prodname) |
|
|
|
|
|
|
|
{ |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
#endif |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
char |
|
|
|
char |
|
|
|
serial_autodetect_devserial(detectone_func_t detectone, const char*prodname) |
|
|
|
serial_autodetect_devserial(detectone_func_t detectone, const char*prodname) |
|
|
|