aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/interfaces.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jtag/interfaces.c')
-rw-r--r--src/jtag/interfaces.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c
index b967b7e9..579e9e74 100644
--- a/src/jtag/interfaces.c
+++ b/src/jtag/interfaces.c
@@ -122,6 +122,9 @@ extern struct jtag_interface sysfsgpio_interface;
#if BUILD_AICE == 1
extern struct jtag_interface aice_interface;
#endif
+#if BUILD_BCM2835GPIO == 1
+extern struct jtag_interface bcm2835gpio_interface;
+#endif
#endif /* standard drivers */
/**
@@ -212,6 +215,9 @@ struct jtag_interface *jtag_interfaces[] = {
#if BUILD_AICE == 1
&aice_interface,
#endif
+#if BUILD_BCM2835GPIO == 1
+ &bcm2835gpio_interface,
+#endif
#endif /* standard drivers */
NULL,
};