Hardware drivers: Use names for struct entries.
This commit is contained in:
parent
c0a4b9716d
commit
e519ba8645
|
@ -359,17 +359,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin alsa_plugin_info = {
|
||||
"alsa",
|
||||
"ALSA driver",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "alsa",
|
||||
.longname = "ALSA driver",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
|
@ -1362,17 +1362,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin asix_sigma_plugin_info = {
|
||||
"asix-sigma",
|
||||
"ASIX SIGMA",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "asix-sigma",
|
||||
.longname = "ASIX SIGMA",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
|
@ -415,17 +415,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin demo_plugin_info = {
|
||||
"demo",
|
||||
"Demo driver and pattern generator",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "demo",
|
||||
.longname = "Demo driver and pattern generator",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
|
@ -948,17 +948,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin ols_plugin_info = {
|
||||
"ols",
|
||||
"Openbench Logic Sniffer",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "ols",
|
||||
.longname = "Openbench Logic Sniffer",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
|
@ -754,17 +754,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin saleae_logic_plugin_info = {
|
||||
"saleae-logic",
|
||||
"Saleae Logic",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "saleae-logic",
|
||||
.longname = "Saleae Logic",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
|
@ -565,17 +565,17 @@ static void hw_stop_acquisition(int device_index, gpointer session_device_id)
|
|||
}
|
||||
|
||||
struct sr_device_plugin zeroplus_logic_cube_plugin_info = {
|
||||
"zeroplus-logic-cube",
|
||||
"Zeroplus Logic Cube LAP-C series",
|
||||
1,
|
||||
hw_init,
|
||||
hw_cleanup,
|
||||
hw_opendev,
|
||||
hw_closedev,
|
||||
hw_get_device_info,
|
||||
hw_get_status,
|
||||
hw_get_capabilities,
|
||||
hw_set_configuration,
|
||||
hw_start_acquisition,
|
||||
hw_stop_acquisition,
|
||||
.name = "zeroplus-logic-cube",
|
||||
.longname = "Zeroplus Logic Cube LAP-C series",
|
||||
.api_version = 1,
|
||||
.init = hw_init,
|
||||
.cleanup = hw_cleanup,
|
||||
.open = hw_opendev,
|
||||
.close = hw_closedev,
|
||||
.get_device_info = hw_get_device_info,
|
||||
.get_status = hw_get_status,
|
||||
.get_capabilities = hw_get_capabilities,
|
||||
.set_configuration = hw_set_configuration,
|
||||
.start_acquisition = hw_start_acquisition,
|
||||
.stop_acquisition = hw_stop_acquisition,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue