X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fjtag%2Finterfaces.c;h=579e9e74ddbf42187b100ccdf7b4d825d976199d;hb=962b3eb40cc5b69d9b3d6fcc4c5d56c4d204a307;hp=8cf09a3c0ffccee12989f7ff53bea8e719db92d2;hpb=ceb402dc9e903d2f3f6bc8125dfed9d82b83d2d1;p=openocd.git diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index 8cf09a3c0f..579e9e74dd 100644 --- a/src/jtag/interfaces.c +++ b/src/jtag/interfaces.c @@ -25,7 +25,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ #ifdef HAVE_CONFIG_H @@ -83,6 +83,9 @@ extern struct jtag_interface presto_interface; #if BUILD_USBPROG == 1 extern struct jtag_interface usbprog_interface; #endif +#if BUILD_OPENJTAG == 1 +extern struct jtag_interface openjtag_interface; +#endif #if BUILD_JLINK == 1 extern struct jtag_interface jlink_interface; #endif @@ -119,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 */ /** @@ -170,6 +176,9 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_USBPROG == 1 &usbprog_interface, #endif +#if BUILD_OPENJTAG == 1 + &openjtag_interface, +#endif #if BUILD_JLINK == 1 &jlink_interface, #endif @@ -206,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, };