]> sigrok.org Git - libsigrok.git/commitdiff
session_driver: remove unneeded callbacks
authorBert Vermeulen <redacted>
Mon, 31 Jan 2011 23:06:32 +0000 (00:06 +0100)
committerBert Vermeulen <redacted>
Mon, 31 Jan 2011 23:06:32 +0000 (00:06 +0100)
device.c
session.c
session_driver.c

index 9985fca987c8e7a209c18e887af8e9c66df029d9..f5674b4ca426a1b29bc5699259185becdbc6cb92 100644 (file)
--- a/device.c
+++ b/device.c
@@ -64,7 +64,7 @@ void device_close_all(void)
 
        while (devices) {
                device = devices->data;
-               if (device->plugin)
+               if (device->plugin && device->plugin->close)
                        device->plugin->close(device->plugin_index);
                device_destroy(device);
        }
index ab8e5c138cf35954978c212b6ab5201ddc52d4bc..ed86de3c8b27b4cb073e40b3de3dcee6c44ba5c3 100644 (file)
--- a/session.c
+++ b/session.c
@@ -201,7 +201,7 @@ void session_stop(void)
        session->running = FALSE;
        for (l = session->devices; l; l = l->next) {
                device = l->data;
-               if (device->plugin)
+               if (device->plugin && device->plugin->stop_acquisition)
                        device->plugin->stop_acquisition(device->plugin_index, device);
        }
 
index bbd5a61572bfa3da3b25df3af52360988d2fccfd..1bc430d522033bc6570551567e9d27370c17d6b5 100644 (file)
@@ -146,19 +146,14 @@ static int hw_opendev(int device_index)
        return SR_OK;
 }
 
-static void hw_closedev(int device_index)
-{
-
-       /* avoid compiler warning */
-       device_index = device_index;
-
-}
-
 static void *hw_get_device_info(int device_index, int device_info_id)
 {
        struct session_vdevice *vdevice;
        void *info;
 
+       if (device_info_id != SR_DI_CUR_SAMPLERATE)
+               return NULL;
+
        if (!(vdevice = get_vdevice_by_index(device_index)))
                return NULL;
 
@@ -275,19 +270,6 @@ static int hw_start_acquisition(int device_index, gpointer session_device_id)
        return SR_OK;
 }
 
-static void hw_stop_acquisition(int device_index, gpointer session_device_id)
-{
-       struct session_vdevice *vdevice;
-
-       /* avoid compiler warning */
-       session_device_id = session_device_id;
-
-//     vdevice = get_vdevice_by_index(device_index);
-//     zip_fclose(vdevice->capfile);
-//     zip_close(vdevice->archive);
-
-}
-
 
 struct sr_device_plugin session_driver = {
        "session",
@@ -296,11 +278,11 @@ struct sr_device_plugin session_driver = {
        hw_init,
        hw_cleanup,
        hw_opendev,
-       hw_closedev,
+       NULL,
        hw_get_device_info,
        hw_get_status,
        hw_get_capabilities,
        hw_set_configuration,
        hw_start_acquisition,
-       hw_stop_acquisition,
+       NULL
 };