X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fjtag%2Finterfaces.c;h=579e9e74ddbf42187b100ccdf7b4d825d976199d;hb=refs%2Fchanges%2F58%2F758%2F11;hp=19d2fccca6ed5438c8f5bc810d8298c003bfd864;hpb=fe52282c37cc0c4ab9863e95ef6970e6fad540b4;p=openocd.git diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index 19d2fccca6..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 @@ -104,8 +107,8 @@ extern struct jtag_interface buspirate_interface; #if BUILD_REMOTE_BITBANG == 1 extern struct jtag_interface remote_bitbang_interface; #endif -#if BUILD_STLINK == 1 -extern struct jtag_interface stlink_interface; +#if BUILD_HLADAPTER == 1 +extern struct jtag_interface hl_interface; #endif #if BUILD_OSBDM == 1 extern struct jtag_interface osbdm_interface; @@ -116,6 +119,12 @@ extern struct jtag_interface opendous_interface; #if BUILD_SYSFSGPIO == 1 extern struct jtag_interface sysfsgpio_interface; #endif +#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 */ /** @@ -167,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 @@ -188,8 +200,8 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_REMOTE_BITBANG == 1 &remote_bitbang_interface, #endif -#if BUILD_STLINK == 1 - &stlink_interface, +#if BUILD_HLADAPTER == 1 + &hl_interface, #endif #if BUILD_OSBDM == 1 &osbdm_interface, @@ -200,6 +212,12 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_SYSFSGPIO == 1 &sysfsgpio_interface, #endif +#if BUILD_AICE == 1 + &aice_interface, +#endif +#if BUILD_BCM2835GPIO == 1 + &bcm2835gpio_interface, +#endif #endif /* standard drivers */ NULL, };