This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/198
-- gerrit commit 0ef5a90d93c5a026bcf70132e60e957ae339d1e1 Author: Spencer Oliver <[email protected]> Date: Mon Nov 14 15:43:35 2011 +0000 build: fix gcc 4.6.2 warnings see trac #47 Change-Id: I48a3e963354dfc82209477672c2508c96fb737d6 Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/jtag/drivers/amt_jtagaccel.c b/src/jtag/drivers/amt_jtagaccel.c index a433e81..424019e 100644 --- a/src/jtag/drivers/amt_jtagaccel.c +++ b/src/jtag/drivers/amt_jtagaccel.c @@ -68,34 +68,26 @@ static const int addr_mode = IEEE1284_MODE_EPP | IEEE1284_ADDR; #define AMT_AW(val) \ do { \ - int __retval; \ - \ - __retval = ioctl(device_handle, PPSETMODE, &addr_mode); \ - __retval = write(device_handle, &val, 1); \ + ioctl(device_handle, PPSETMODE, &addr_mode); \ + write(device_handle, &val, 1); \ } while (0) #define AMT_AR(val) \ do { \ - int __retval; \ - \ - __retval = ioctl(device_handle, PPSETMODE, &addr_mode); \ - __retval = read(device_handle, &val, 1); \ + ioctl(device_handle, PPSETMODE, &addr_mode); \ + read(device_handle, &val, 1); \ } while (0) static const int data_mode = IEEE1284_MODE_EPP | IEEE1284_DATA; #define AMT_DW(val) \ do { \ - int __retval; \ - \ - __retval = ioctl(device_handle, PPSETMODE, &data_mode); \ - __retval = write(device_handle, &val, 1); \ + ioctl(device_handle, PPSETMODE, &data_mode); \ + write(device_handle, &val, 1); \ } while (0) #define AMT_DR(val) \ do { \ - int __retval; \ - \ - __retval = ioctl(device_handle, PPSETMODE, &data_mode); \ - __retval = read(device_handle, &val, 1); \ + ioctl(device_handle, PPSETMODE, &data_mode); \ + read(device_handle, &val, 1); \ } while (0) #else -- ------------------------------------------------------------------------------ RSA(R) Conference 2012 Save $700 by Nov 18 Register now http://p.sf.net/sfu/rsa-sfdev2dev1 _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
