remove some dead wood

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1552 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.0
Stéphane Fillod, F8CFE 2003-10-01 19:34:08 +00:00
rodzic 84ad9b827b
commit 4d6426101e
5 zmienionych plików z 6 dodań i 61 usunięć

Wyświetl plik

@ -7,7 +7,7 @@
* The starting point for this code was Frank's ft847 implementation.
*
*
* $Id: ft100.c,v 1.10 2003-04-07 22:42:00 fillods Exp $
* $Id: ft100.c,v 1.11 2003-10-01 19:34:07 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -30,6 +30,7 @@
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* String function definitions */
#include <unistd.h> /* UNIX standard function definitions */
@ -298,15 +299,6 @@ const struct rig_caps ft100_caps = {
};
int init_ft100(void *be_handle) {
rig_debug(RIG_DEBUG_VERBOSE, "ft100: _init called\n");
rig_register(&ft100_caps);
return RIG_OK;
}
int ft100_init(RIG *rig) {
struct ft100_priv_data *p;

Wyświetl plik

@ -7,7 +7,7 @@
* box (FIF-232C) or similar
*
*
* $Id: ft747.c,v 1.19 2003-04-07 22:42:02 fillods Exp $
* $Id: ft747.c,v 1.20 2003-10-01 19:34:08 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -795,19 +795,6 @@ static int ft747_get_update_data(RIG *rig) {
}
/*
* init_ft747 is called by rig_backend_load
*/
int init_ft747(void *be_handle) {
rig_debug(RIG_DEBUG_VERBOSE, "ft747: _init called\n");
rig_register(&ft747_caps);
return RIG_OK;
}
/*
* private helper function to send a private command
* sequence . Must only be complete sequences.

Wyświetl plik

@ -7,7 +7,7 @@
* The starting point for this code was Frank's ft847 implementation.
*
*
* $Id: ft817.c,v 1.8 2003-04-07 22:42:04 fillods Exp $
* $Id: ft817.c,v 1.9 2003-10-01 19:34:08 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -246,15 +246,6 @@ const struct rig_caps ft817_caps = {
};
int init_ft817(void *be_handle) {
rig_debug(RIG_DEBUG_VERBOSE, "ft817: _init called\n");
rig_register(&ft817_caps);
return RIG_OK;
}
int ft817_init(RIG *rig) {
struct ft817_priv_data *p;

Wyświetl plik

@ -6,7 +6,7 @@
* via serial interface to an FT-847 using the "CAT" interface.
*
*
* $Id: ft847.c,v 1.24 2003-08-11 21:21:40 fillods Exp $
* $Id: ft847.c,v 1.25 2003-10-01 19:34:08 fillods Exp $
*
*
*
@ -774,19 +774,3 @@ int ft847_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt) {
}
/*
* init_ft847 is called by rig_backend_load
*/
int init_ft847(void *be_handle) {
rig_debug(RIG_DEBUG_VERBOSE, "ft847: _init called\n");
rig_register(&ft847_caps);
return RIG_OK;
}

Wyświetl plik

@ -13,7 +13,7 @@
* The starting point for this code was Frank's ft847 implementation.
*
*
* $Id: ft857.c,v 1.3 2003-09-21 11:08:06 fillods Exp $
* $Id: ft857.c,v 1.4 2003-10-01 19:34:08 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -286,15 +286,6 @@ const struct rig_caps ft857_caps = {
/* ---------------------------------------------------------------------- */
int init_ft857(void *be_handle)
{
rig_debug(RIG_DEBUG_VERBOSE, "ft857: _init called\n");
rig_register(&ft857_caps);
return RIG_OK;
}
int ft857_init(RIG *rig)
{
struct ft857_priv_data *p;