]> sigrok.org Git - libsigrok.git/commitdiff
Disable Link Instruments MSO-19 for 0.1.
authorUwe Hermann <redacted>
Wed, 19 Jan 2011 22:55:03 +0000 (23:55 +0100)
committerUwe Hermann <redacted>
Wed, 19 Jan 2011 22:55:03 +0000 (23:55 +0100)
hardware/Makefile.am
hwplugin.c

index eb7088f39d071359e25aab55494d274fdef67dbe..74b92f111df36c8839fd3bd5d9bfd31dca1b86be 100644 (file)
@@ -21,7 +21,6 @@ SUBDIRS = \
        asix-sigma \
        common \
        demo \
-       link-mso19 \
        openbench-logic-sniffer \
        saleae-logic \
        zeroplus-logic-cube
@@ -41,9 +40,9 @@ if LA_ASIX_SIGMA
 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
 endif
 
-if LA_LINK_MSO19
-libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
-endif
+if LA_LINK_MSO19
+libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
+endif
 
 if LA_OLS
 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
index 0a30aad0016263f5ecc0012ba6f0f7fb6c731ccd..1407f0ec6f422466dc3a40ddfed0473e20cd25ea 100644 (file)
@@ -58,9 +58,9 @@ extern struct device_plugin zeroplus_logic_cube_plugin_info;
 #ifdef HAVE_LA_ASIX_SIGMA
 extern struct device_plugin asix_sigma_plugin_info;
 #endif
-#ifdef HAVE_LA_LINK_MSO19
-extern struct device_plugin link_mso19_plugin_info;
-#endif
+// #ifdef HAVE_LA_LINK_MSO19
+// extern struct device_plugin link_mso19_plugin_info;
+// #endif
 
 /* TODO: No linked list needed, this can be a simple array. */
 int load_hwplugins(void)
@@ -82,9 +82,9 @@ int load_hwplugins(void)
 #ifdef HAVE_LA_ASIX_SIGMA
        plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
 #endif
-#ifdef HAVE_LA_LINK_MSO19
-       plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
-#endif
+// #ifdef HAVE_LA_LINK_MSO19
+//     plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
+// #endif
 
        return SIGROK_OK;
 }