]> sigrok.org Git - libsigrok.git/commitdiff
genericdmm: Drop some dead code.
authorUwe Hermann <redacted>
Fri, 2 Nov 2012 17:05:18 +0000 (18:05 +0100)
committerUwe Hermann <redacted>
Fri, 2 Nov 2012 17:05:18 +0000 (18:05 +0100)
hardware/genericdmm/Makefile.am
hardware/genericdmm/api.c
hardware/genericdmm/fs9922.c [deleted file]

index b43cd9842a4fd0a733d1f78d837b5484dfb810b8..2c86a5346513a4fe1722ca55e32105046de35f40 100644 (file)
@@ -24,7 +24,6 @@ noinst_LTLIBRARIES = libsigrokhwgenericdmm.la
 
 libsigrokhwgenericdmm_la_SOURCES = \
        api.c \
-       fs9922.c \
        victor-70c.c \
        genericdmm.h
 
index 5b12b2e42b48ffeaef132f6766effcfb5093b886..e5525ca21b6431a23366df9aefd71776f327de1d 100644 (file)
@@ -38,7 +38,6 @@ static struct dev_profile dev_profiles[] = {
        { "victor-70c", "Victor", "70C", &dmmchip_victor70c,
                DMM_TRANSPORT_USBHID, 1000, victor_70c_vidpid
        },
-       { "mastech-va18b", "Mastech", "VA18B", NULL, DMM_TRANSPORT_SERIAL, 0, NULL},
        { NULL, NULL, NULL, NULL, 0, 0, NULL }
 };
 
diff --git a/hardware/genericdmm/fs9922.c b/hardware/genericdmm/fs9922.c
deleted file mode 100644 (file)
index 7e11180..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * This file is part of the sigrok project.
- *
- * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "libsigrok.h"
-#include "libsigrok-internal.h"
-#include "genericdmm.h"
-
-
-static int fs9922_data(struct sr_dev_inst *sdi)
-{
-       struct sr_datafeed_packet packet;
-       struct sr_datafeed_analog analog;
-
-       packet.type = SR_DF_ANALOG;
-       packet.payload = &analog;
-
-       return SR_OK;
-}
-
-
-SR_PRIV struct dmmchip dmmchip_fs9922 = {
-       .data = fs9922_data,
-};
-