aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Yurovsky <yurovsky@gmail.com>2013-08-20 20:15:36 -0700
committerSpencer Oliver <spen@spen-soft.co.uk>2013-08-29 07:57:19 +0000
commit82c3e1aa3193eee5a9f6f006a0508902368e106e (patch)
treeb5990b6b60f2cefd6ce2f64471d34ded18157582
parent1d4b0090e77dac47f53539612835b6174eb088ae (diff)
downloadriscv-openocd-82c3e1aa3193eee5a9f6f006a0508902368e106e.zip
riscv-openocd-82c3e1aa3193eee5a9f6f006a0508902368e106e.tar.gz
riscv-openocd-82c3e1aa3193eee5a9f6f006a0508902368e106e.tar.bz2
stlink_usb: remove gcc-specific constant
Replace 0b10 with 0x02, 0b is a GCC extension and isn't supported by clang, for instance, so compiling on OS X will fail. No functional changes. Change-Id: Ie882be1563df03e7ad3da0bc9aee65a907a29549 Signed-off-by: Andrey Yurovsky <yurovsky@gmail.com> Reviewed-on: http://openocd.zylin.com/1560 Tested-by: jenkins Reviewed-by: Xiaofan <xiaofanc@gmail.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--src/jtag/drivers/stlink_usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/drivers/stlink_usb.c b/src/jtag/drivers/stlink_usb.c
index 047de52..1f3fbe2 100644
--- a/src/jtag/drivers/stlink_usb.c
+++ b/src/jtag/drivers/stlink_usb.c
@@ -990,7 +990,7 @@ static int stlink_configure_target_trace_port(void *handle)
goto out;
/* select the pin protocol. The STLinkv2 only supports asynchronous
* UART emulation (NRZ) mode, so that's what we pick. */
- res = stlink_usb_write_debug_reg(handle, TPI_SPPR, 0b10);
+ res = stlink_usb_write_debug_reg(handle, TPI_SPPR, 0x02);
if (res != ERROR_OK)
goto out;
/* disable continuous formatting */