Commit df54b7685599ec5705978e419a36c4a6bf796de4

ckolivas 2013-09-28T13:52:13

Add a noop function for driver detect when it's missing.

diff --git a/cgminer.c b/cgminer.c
index 4021990..6fad18e 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -7434,6 +7434,9 @@ static void noop_thread_enable(struct thr_info __maybe_unused *thr)
 {
 }
 
+static void noop_null(void)
+{
+}
 #define noop_flush_work noop_reinit_device
 #define noop_queue_full noop_get_stats
 
@@ -7442,6 +7445,8 @@ void fill_device_drv(struct cgpu_info *cgpu)
 {
 	struct device_drv *drv = cgpu->drv;
 
+	if (!drv->drv_detect)
+		drv->drv_detect = &noop_null;
 	if (!drv->reinit_device)
 		drv->reinit_device = &noop_reinit_device;
 	if (!drv->get_statline_before)