]> git.sur5r.net Git - openocd/commitdiff
Include ULINK driver in src/jtag/interfaces.c
authorMartin Schmölzer <martin.schmoelzer@student.tuwien.ac.at>
Mon, 20 Jun 2011 17:49:24 +0000 (19:49 +0200)
committerØyvind Harboe <oyvind.harboe@zylin.com>
Sun, 26 Jun 2011 15:43:51 +0000 (17:43 +0200)
src/jtag/interfaces.c

index 8d13a0860cc98b0ce69caac49c266574731910c6..dbc69d074abc9b7c993210343f1da7cc41d920f5 100644 (file)
@@ -88,6 +88,9 @@ extern struct jtag_interface vsllink_interface;
 #if BUILD_RLINK == 1
 extern struct jtag_interface rlink_interface;
 #endif
+#if BUILD_ULINK == 1
+extern struct jtag_interface ulink_interface;
+#endif
 #if BUILD_ARMJTAGEW == 1
 extern struct jtag_interface armjtagew_interface;
 #endif
@@ -151,6 +154,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_RLINK == 1
                &rlink_interface,
 #endif
+#if BUILD_ULINK == 1
+               &ulink_interface,
+#endif
 #if BUILD_ARMJTAGEW == 1
                &armjtagew_interface,
 #endif