From f279e54347914ac319405c35aca338b34b2e6728 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Schm=C3=B6lzer?=
 <martin.schmoelzer@student.tuwien.ac.at>
Date: Mon, 20 Jun 2011 19:49:24 +0200
Subject: [PATCH] Include ULINK driver in src/jtag/interfaces.c

---
 src/jtag/interfaces.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c
index 8d13a0860..dbc69d074 100644
--- a/src/jtag/interfaces.c
+++ b/src/jtag/interfaces.c
@@ -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
-- 
GitLab