From cc3869e5ced652fee7428ad76f869bd9406489e4 Mon Sep 17 00:00:00 2001 From: Kano Date: Sun, 3 Mar 2013 16:38:02 +1100 Subject: [PATCH] api -> drv --- cgminer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cgminer.c b/cgminer.c index 1caac24b..7dcf2047 100644 --- a/cgminer.c +++ b/cgminer.c @@ -6658,8 +6658,8 @@ static void noop_thread_enable(struct thr_info __maybe_unused *thr) #define noop_flush_work noop_reinit_device #define noop_queue_full noop_get_stats -/* Fill missing driver api functions with noops */ -void fill_device_api(struct cgpu_info *cgpu) +/* Fill missing driver drv functions with noops */ +void fill_device_drv(struct cgpu_info *cgpu) { struct device_drv *drv = cgpu->drv; @@ -6713,7 +6713,7 @@ void enable_device(struct cgpu_info *cgpu) gpu_threads += cgpu->threads; } #endif - fill_device_api(cgpu); + fill_device_drv(cgpu); rwlock_init(&cgpu->qlock); cgpu->queued_work = NULL;