git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@214 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.0
Frank Singleton, VK3FCS 2000-10-14 03:55:26 +00:00
rodzic 2950f13083
commit c81ec9ef51
1 zmienionych plików z 5 dodań i 12 usunięć

Wyświetl plik

@ -7,7 +7,7 @@
* box (FIF-232C) or similar * box (FIF-232C) or similar
* *
* *
* $Id: ft747.c,v 1.17 2000-10-09 01:17:19 javabear Exp $ * $Id: ft747.c,v 1.18 2000-10-14 03:55:26 javabear Exp $
* *
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -26,10 +26,6 @@
* *
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> /* Standard input/output definitions */ #include <stdio.h> /* Standard input/output definitions */
#include <string.h> /* String function definitions */ #include <string.h> /* String function definitions */
@ -634,13 +630,10 @@ void ft747_cmd_get_update_store(int fd, unsigned char *buffer) {
/* /*
* init_ft747 is called by rig_backend_load * init_ft747 is called by rig_backend_load
*/ */
int init_ft747(void *be_handle) int init_ft747(void *be_handle) {
{ rig_debug(RIG_DEBUG_VERBOSE, "ft747: _init called\n");
rig_debug(RIG_DEBUG_VERBOSE, "ft747: _init called\n"); rig_register(&ft747_caps);
return RIG_OK;
rig_register(&ft747_caps);
return RIG_OK;
} }