1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 23:08:07 +00:00

Forward declare all device drivers in miner.h avoiding the need to export them everywhere else.

This commit is contained in:
ckolivas 2013-09-28 14:00:18 +10:00
parent df54b76855
commit 741b74309e
9 changed files with 1 additions and 17 deletions

View File

@ -52,7 +52,6 @@ int opt_bitburner_core_voltage = BITBURNER_DEFAULT_CORE_VOLTAGE;
bool opt_avalon_auto; bool opt_avalon_auto;
static int option_offset = -1; static int option_offset = -1;
struct device_drv avalon_drv;
static int avalon_init_task(struct avalon_task *at, static int avalon_init_task(struct avalon_task *at,
uint8_t reset, uint8_t ff, uint8_t fan, uint8_t reset, uint8_t ff, uint8_t fan,

View File

@ -33,8 +33,6 @@ int opt_bflsc_overheat = BFLSC_TEMP_OVERHEAT;
static const char *blank = ""; static const char *blank = "";
struct device_drv bflsc_drv;
static enum driver_version drv_ver(struct cgpu_info *bflsc, const char *ver) static enum driver_version drv_ver(struct cgpu_info *bflsc, const char *ver)
{ {
char *tmp; char *tmp;

View File

@ -77,8 +77,6 @@
static const char *blank = ""; static const char *blank = "";
struct device_drv bitforce_drv;
static void bitforce_initialise(struct cgpu_info *bitforce, bool lock) static void bitforce_initialise(struct cgpu_info *bitforce, bool lock)
{ {
int err, interface; int err, interface;

View File

@ -15,7 +15,6 @@
/* Wait longer 1/3 longer than it would take for a full nonce range */ /* Wait longer 1/3 longer than it would take for a full nonce range */
#define BF1WAIT 1600 #define BF1WAIT 1600
struct device_drv bitfury_drv;
static void bitfury_empty_buffer(struct cgpu_info *bitfury) static void bitfury_empty_buffer(struct cgpu_info *bitfury)
{ {

View File

@ -235,8 +235,6 @@ struct ICARUS_INFO {
// //
static int option_offset = -1; static int option_offset = -1;
struct device_drv icarus_drv;
/* /*
#define ICA_BUFSIZ (0x200) #define ICA_BUFSIZ (0x200)

View File

@ -87,8 +87,6 @@
// Limit when reducing shares_to_good // Limit when reducing shares_to_good
#define MODMINER_MIN_BACK 12 #define MODMINER_MIN_BACK 12
struct device_drv modminer_drv;
// 45 noops sent when detecting, in case the device was left in "start job" reading // 45 noops sent when detecting, in case the device was left in "start job" reading
static const char NOOP[] = MODMINER_PING "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"; static const char NOOP[] = MODMINER_PING "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff";

View File

@ -56,10 +56,6 @@ extern void decay_time(double *f, double fadd);
/**********************************************/ /**********************************************/
#ifdef HAVE_OPENCL
struct device_drv opencl_drv;
#endif
#ifdef HAVE_ADL #ifdef HAVE_ADL
extern float gpu_temp(int gpu); extern float gpu_temp(int gpu);
extern int gpu_fanspeed(int gpu); extern int gpu_fanspeed(int gpu);

View File

@ -31,8 +31,6 @@
#define GOLDEN_BACKLOG 5 #define GOLDEN_BACKLOG 5
struct device_drv ztex_drv;
// Forward declarations // Forward declarations
static void ztex_disable(struct thr_info* thr); static void ztex_disable(struct thr_info* thr);
static bool ztex_prepare(struct thr_info *thr); static bool ztex_prepare(struct thr_info *thr);

View File

@ -249,7 +249,7 @@ enum drv_driver {
#undef DRIVER_ADD_COMMAND #undef DRIVER_ADD_COMMAND
/* Use DRIVER_PARSE_COMMANDS to generate extern device_drv prototypes */ /* Use DRIVER_PARSE_COMMANDS to generate extern device_drv prototypes */
#define DRIVER_ADD_COMMAND(X) extern struct device_drv X##_drv; #define DRIVER_ADD_COMMAND(X) struct device_drv X##_drv;
DRIVER_PARSE_COMMANDS; DRIVER_PARSE_COMMANDS;
#undef DRIVER_ADD_COMMAND #undef DRIVER_ADD_COMMAND