X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Finterfaces.c;h=579e9e74ddbf42187b100ccdf7b4d825d976199d;hp=b967b7e9964d5adccb886848c2bdd2ef76e4f483;hb=962b3eb40cc5b69d9b3d6fcc4c5d56c4d204a307;hpb=08d4411b59dd8bd0e7d8009003b71d23acbf6eee diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index b967b7e996..579e9e74dd 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, };