drivers/imx_gpio: fix usage messages
[openocd.git] / src / jtag / drivers / versaloon / versaloon_include.h
index eacb2e6495f2417c5177901c6012ed1528cafab2..089056d0233e28946c48010afeead1653963f8a3 100644 (file)
  *   GNU General Public License for more details.                          *
  *                                                                         *
  *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
-// This file is used to include different header and macros
-// according to different platform
+
+#ifndef OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H
+#define OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H
+
+/* 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"
 
 #define PARAM_CHECK                                                    1
 
@@ -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
 
 #define ERRMSG_NOT_SUPPORT_BY                          "%s is not supported by %s."
 
 #define ERRMSG_FAILURE_OPERATION                       "Fail to %s."
-#define ERRMSG_FAILURE_OPERATION_ERRSTRING     "Fail to %s, error string is %s."
 #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;\
@@ -98,3 +98,5 @@
 #define SET_LE_U32(p, v)                       SET_U32_LSBFIRST(p, v)
 #define SET_BE_U16(p, v)                       SET_U16_MSBFIRST(p, v)
 #define SET_BE_U32(p, v)                       SET_U32_MSBFIRST(p, v)
+
+#endif /* OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)