Remove whitespace that occurs before ')'.
[fw/openocd] / src / jtag / rlink / dtc_cmd.h
index 04475b01b0ca7ff801800f60f01daf6fb0fd50a9..989750982be0c2a93b8f31227f32fc3b8c3e3c58 100644 (file)
 
 #define DTC_CMD_SHIFT_TMS_TDI_BIT_PAIR(tms, tdi, tdo)  ((0x8 << 4) | (\
                (tms) ? (1 << 0) : 0    \
-       ) | (\
+) | (\
                (tdi) ? (1 << 1) : 0    \
-       ) | (\
+) | (\
                (tdo) ? (1 << 3) : 0    \
-       ))
+))
 /* Single bit shift. */
 /* tms and tdi are the levels shifted out on TMS and TDI, respectively. */
 /* tdo indicates whether a byte will be returned in the reply buffer with its least significant bit set to reflect TDO */