This is an automated email from Gerrit. Robert Jarzmik ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1457
-- gerrit commit 332152cbc50a9f55ec449b741ea734b227ae9ef9 Author: Robert Jarzmik <[email protected]> Date: Mon Jun 24 04:51:22 2013 +0200 jtag/drivers: trivial variable renaming Rename ublast_sleep() time variable from ms to us as the unit is in micro-seconds. Change-Id: I07ff9c36d302d5d59edb8a5faa73d78cdd6145a4 Signed-off-by: Robert Jarzmik <[email protected]> diff --git a/src/jtag/drivers/usb_blaster/usb_blaster.c b/src/jtag/drivers/usb_blaster/usb_blaster.c index f02ecff..cb9743f 100644 --- a/src/jtag/drivers/usb_blaster/usb_blaster.c +++ b/src/jtag/drivers/usb_blaster/usb_blaster.c @@ -724,10 +724,10 @@ static int ublast_scan(struct scan_command *cmd) return ret; } -static void ublast_msleep(int ms) +static void ublast_msleep(int us) { - DEBUG_JTAG_IO("%s(ms=%d)", __func__, ms); - jtag_sleep(ms); + DEBUG_JTAG_IO("%s(us=%d)", __func__, us); + jtag_sleep(us); } static int ublast_execute_queue(void) -- ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
