aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/drivers/versaloon/versaloon_include.h
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-02-02 15:08:51 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-02-06 10:59:07 +0000
commitde0130a0aad83c1ef692ee4d68ab996a8668424d (patch)
tree8d151b820c89c2b9e76dcae953d1f6caf4b18f14 /src/jtag/drivers/versaloon/versaloon_include.h
parent2af5b97ba31fed7bab2d43b987f815629e1cd8f7 (diff)
build: cleanup src/jtag/drivers directory
Change-Id: I99c08ec0132d5a15250050e718310f1ddd9fe546 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/425 Tested-by: jenkins
Diffstat (limited to 'src/jtag/drivers/versaloon/versaloon_include.h')
-rw-r--r--src/jtag/drivers/versaloon/versaloon_include.h39
1 files changed, 20 insertions, 19 deletions
diff --git a/src/jtag/drivers/versaloon/versaloon_include.h b/src/jtag/drivers/versaloon/versaloon_include.h
index eacb2e64..9401bc6a 100644
--- a/src/jtag/drivers/versaloon/versaloon_include.h
+++ b/src/jtag/drivers/versaloon/versaloon_include.h
@@ -16,8 +16,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-// This file is used to include different header and macros
-// according to different platform
+
+/* This file is used to include different header and macros */
+/* according to different platform */
#include <jtag/interface.h>
#include <jtag/commands.h>
#include "usb_common.h"
@@ -31,7 +32,7 @@
#define RESULT int
#define LOG_BUG LOG_ERROR
-// Common error messages
+/* Common error messages */
#define ERRMSG_NOT_ENOUGH_MEMORY "Lack of memory."
#define ERRCODE_NOT_ENOUGH_MEMORY ERROR_FAIL
@@ -52,38 +53,38 @@
#define ERRMSG_FAILURE_OPERATION_MESSAGE "Fail to %s, %s"
#define ERRCODE_FAILURE_OPERATION ERROR_FAIL
-#define GET_U16_MSBFIRST(p) ( ((*((uint8_t *)(p) + 0)) << 8) | \
- ((*((uint8_t *)(p) + 1)) << 0))
-#define GET_U32_MSBFIRST(p) ( ((*((uint8_t *)(p) + 0)) << 24) | \
- ((*((uint8_t *)(p) + 1)) << 16) | \
- ((*((uint8_t *)(p) + 2)) << 8) | \
- ((*((uint8_t *)(p) + 3)) << 0))
-#define GET_U16_LSBFIRST(p) ( ((*((uint8_t *)(p) + 0)) << 0) | \
- ((*((uint8_t *)(p) + 1)) << 8))
-#define GET_U32_LSBFIRST(p) ( ((*((uint8_t *)(p) + 0)) << 0) | \
- ((*((uint8_t *)(p) + 1)) << 8) | \
- ((*((uint8_t *)(p) + 2)) << 16) | \
- ((*((uint8_t *)(p) + 3)) << 24))
+#define GET_U16_MSBFIRST(p) (((*((uint8_t *)(p) + 0)) << 8) | \
+ ((*((uint8_t *)(p) + 1)) << 0))
+#define GET_U32_MSBFIRST(p) (((*((uint8_t *)(p) + 0)) << 24) | \
+ ((*((uint8_t *)(p) + 1)) << 16) | \
+ ((*((uint8_t *)(p) + 2)) << 8) | \
+ ((*((uint8_t *)(p) + 3)) << 0))
+#define GET_U16_LSBFIRST(p) (((*((uint8_t *)(p) + 0)) << 0) | \
+ ((*((uint8_t *)(p) + 1)) << 8))
+#define GET_U32_LSBFIRST(p) (((*((uint8_t *)(p) + 0)) << 0) | \
+ ((*((uint8_t *)(p) + 1)) << 8) | \
+ ((*((uint8_t *)(p) + 2)) << 16) | \
+ ((*((uint8_t *)(p) + 3)) << 24))
#define SET_U16_MSBFIRST(p, v) \
- do{\
+ do {\
*((uint8_t *)(p) + 0) = (((uint16_t)(v)) >> 8) & 0xFF;\
*((uint8_t *)(p) + 1) = (((uint16_t)(v)) >> 0) & 0xFF;\
} while (0)
#define SET_U32_MSBFIRST(p, v) \
- do{\
+ do {\
*((uint8_t *)(p) + 0) = (((uint32_t)(v)) >> 24) & 0xFF;\
*((uint8_t *)(p) + 1) = (((uint32_t)(v)) >> 16) & 0xFF;\
*((uint8_t *)(p) + 2) = (((uint32_t)(v)) >> 8) & 0xFF;\
*((uint8_t *)(p) + 3) = (((uint32_t)(v)) >> 0) & 0xFF;\
} while (0)
#define SET_U16_LSBFIRST(p, v) \
- do{\
+ do {\
*((uint8_t *)(p) + 0) = (((uint16_t)(v)) >> 0) & 0xFF;\
*((uint8_t *)(p) + 1) = (((uint16_t)(v)) >> 8) & 0xFF;\
} while (0)
#define SET_U32_LSBFIRST(p, v) \
- do{\
+ do {\
*((uint8_t *)(p) + 0) = (((uint32_t)(v)) >> 0) & 0xFF;\
*((uint8_t *)(p) + 1) = (((uint32_t)(v)) >> 8) & 0xFF;\
*((uint8_t *)(p) + 2) = (((uint32_t)(v)) >> 16) & 0xFF;\