]> sigrok.org Git - libsigrok.git/blobdiff - hardware/alsa/alsa.c
sr: s/st*_acquisition/acquisition_st*/.
[libsigrok.git] / hardware / alsa / alsa.c
index 94a95723adc4eea6ddd06df3a5c980f70ada848b..7404ed5b2b1017201416ab002f48cb75cc01bda8 100644 (file)
@@ -290,7 +290,7 @@ static int receive_data(int fd, int revents, void *user_data)
        return TRUE;
 }
 
-static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_start(int dev_index, gpointer session_dev_id)
 {
        struct sr_dev_inst *sdi;
        struct alsa *alsa;
@@ -383,7 +383,7 @@ static int hw_start_acquisition(int dev_index, gpointer session_dev_id)
        return SR_OK;
 }
 
-static int hw_stop_acquisition(int dev_index, gpointer session_dev_id)
+static int hw_acquisition_stop(int dev_index, gpointer session_dev_id)
 {
        /* Avoid compiler warnings. */
        dev_index = dev_index;
@@ -404,6 +404,6 @@ SR_PRIV struct sr_dev_plugin alsa_plugin_info = {
        .get_status = hw_get_status,
        .hwcap_get_all = hw_hwcap_get_all,
        .config_set = hw_config_set,
-       .start_acquisition = hw_start_acquisition,
-       .stop_acquisition = hw_stop_acquisition,
+       .acquisition_start = hw_acquisition_start,
+       .acquisition_stop = hw_acquisition_stop,
 };