openocd/src/jtag/drivers/versaloon
Antonio Borneo 28c24a5c41 openocd: fix simple cases of Yoda condition
There are ~900 Yoda conditions to be aligned to the coding style.
For recurrent Yoda conditions it's preferable using a trivial
script in order to minimize the review effort.
E.g. comparison of uppercase macro/enum with lowercase variable:
	- ...(ERROR_OK == retval)...
	+ ...(retval == ERROR_OK)...

Patch generated automatically with the command:
	sed -i \
	's/(\([A-Z][A-Z0-9_]*\) \([=!]=\) \([a-z][a-z0-9_]*\))/(\3 \2 \1)/g' \
	$(find src/ -type f)

While there, remove the braces {} around a single statement block
to prevent warning from checkpatch.

Change-Id: If585b0a4b4578879c87b2dd74d9e0025e275ec6b
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/6354
Tested-by: jenkins
Reviewed-by: Xiang W <wxjstz@126.com>
2021-07-20 14:55:24 +01:00
..
usbtoxxx jtag: rename CamelCase symbols 2021-07-02 17:10:15 +01:00
versaloon_include.h drivers/versaloon: use ARRAY_SIZE() 2021-05-29 21:33:15 +01:00
versaloon_internal.h coding style: avoid unnecessary line continuations 2020-05-09 14:39:29 +01:00
versaloon.c openocd: fix simple cases of Yoda condition 2021-07-20 14:55:24 +01:00
versaloon.h jtag: rename CamelCase symbols 2021-07-02 17:10:15 +01:00