etb_t -> struct etb
authorZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 17:27:28 +0000 (09:27 -0800)
committerZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 19:58:13 +0000 (11:58 -0800)
Remove misleading typedef and redundant suffix from struct etb.

src/target/etb.c
src/target/etb.h
src/target/etm.c

index 8f1c67aa839047f22c3a69f9fed372345823dbf6..eed961b0d34626c58f0cdce1e2b291246276c44d 100644 (file)
@@ -42,7 +42,7 @@ static int etb_reg_arch_type = -1;
 
 static int etb_get_reg(reg_t *reg);
 
-static int etb_set_instr(etb_t *etb, uint32_t new_instr)
+static int etb_set_instr(struct etb *etb, uint32_t new_instr)
 {
        struct jtag_tap *tap;
 
@@ -69,7 +69,7 @@ static int etb_set_instr(etb_t *etb, uint32_t new_instr)
        return ERROR_OK;
 }
 
-static int etb_scann(etb_t *etb, uint32_t new_scan_chain)
+static int etb_scann(struct etb *etb, uint32_t new_scan_chain)
 {
        if (etb->cur_scan_chain != new_scan_chain)
        {
@@ -121,7 +121,7 @@ static int etb_get_reg(reg_t *reg)
        return ERROR_OK;
 }
 
-struct reg_cache* etb_build_reg_cache(etb_t *etb)
+struct reg_cache* etb_build_reg_cache(struct etb *etb)
 {
        struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache));
        reg_t *reg_list = NULL;
@@ -171,7 +171,7 @@ static void etb_getbuf(jtag_callback_data_t arg)
 }
 
 
-static int etb_read_ram(etb_t *etb, uint32_t *data, int num_frames)
+static int etb_read_ram(struct etb *etb, uint32_t *data, int num_frames)
 {
        struct scan_field fields[3];
        int i;
@@ -384,7 +384,7 @@ COMMAND_HANDLER(handle_etb_config_command)
 
        if (arm->etm)
        {
-               etb_t *etb = malloc(sizeof(etb_t));
+               struct etb *etb = malloc(sizeof(struct etb));
 
                arm->etm->capture_driver_priv = etb;
 
@@ -417,7 +417,7 @@ static int etb_register_commands(struct command_context_s *cmd_ctx)
 
 static int etb_init(etm_context_t *etm_ctx)
 {
-       etb_t *etb = etm_ctx->capture_driver_priv;
+       struct etb *etb = etm_ctx->capture_driver_priv;
 
        etb->etm_ctx = etm_ctx;
 
@@ -434,7 +434,7 @@ static int etb_init(etm_context_t *etm_ctx)
 
 static trace_status_t etb_status(etm_context_t *etm_ctx)
 {
-       etb_t *etb = etm_ctx->capture_driver_priv;
+       struct etb *etb = etm_ctx->capture_driver_priv;
        reg_t *control = &etb->reg_cache->reg_list[ETB_CTRL];
        reg_t *status = &etb->reg_cache->reg_list[ETB_STATUS];
        trace_status_t retval = 0;
@@ -486,7 +486,7 @@ static trace_status_t etb_status(etm_context_t *etm_ctx)
 
 static int etb_read_trace(etm_context_t *etm_ctx)
 {
-       etb_t *etb = etm_ctx->capture_driver_priv;
+       struct etb *etb = etm_ctx->capture_driver_priv;
        int first_frame = 0;
        int num_frames = etb->ram_depth;
        uint32_t *trace_data = NULL;
@@ -636,7 +636,7 @@ static int etb_read_trace(etm_context_t *etm_ctx)
 
 static int etb_start_capture(etm_context_t *etm_ctx)
 {
-       etb_t *etb = etm_ctx->capture_driver_priv;
+       struct etb *etb = etm_ctx->capture_driver_priv;
        uint32_t etb_ctrl_value = 0x1;
        uint32_t trigger_count;
 
@@ -670,7 +670,7 @@ static int etb_start_capture(etm_context_t *etm_ctx)
 
 static int etb_stop_capture(etm_context_t *etm_ctx)
 {
-       etb_t *etb = etm_ctx->capture_driver_priv;
+       struct etb *etb = etm_ctx->capture_driver_priv;
        reg_t *etb_ctrl_reg = &etb->reg_cache->reg_list[ETB_CTRL];
 
        etb_write_reg(etb_ctrl_reg, 0x0);
index 820d2961326bdb2b58ae988649138340b4941dad..e015bad19ee3bf8785ac4ba0818de8494ba17c22 100644 (file)
@@ -34,7 +34,7 @@ enum
        ETB_CTRL = 0x08,
 };
 
-typedef struct etb_s
+struct etb
 {
        etm_context_t *etm_ctx;
        struct jtag_tap *tap;
@@ -44,16 +44,16 @@ typedef struct etb_s
        /* ETB parameters */
        uint32_t ram_depth;
        uint32_t ram_width;
-} etb_t;
+};
 
 struct etb_reg
 {
        uint32_t addr;
-       etb_t *etb;
+       struct etb *etb;
 };
 
 extern struct etm_capture_driver etb_capture_driver;
 
-struct reg_cache* etb_build_reg_cache(etb_t *etb);
+struct reg_cache* etb_build_reg_cache(struct etb *etb);
 
 #endif /* ETB_H */
index a5fe2826fb77469e40041a5737d08e66952d92c8..21044e544ada30230a1bd2cb6bc27be9fea78384 100644 (file)
@@ -391,7 +391,7 @@ struct reg_cache *etm_build_reg_cache(target_t *target,
        /* the ETM might have an ETB connected */
        if (strcmp(etm_ctx->capture_driver->name, "etb") == 0)
        {
-               etb_t *etb = etm_ctx->capture_driver_priv;
+               struct etb *etb = etm_ctx->capture_driver_priv;
 
                if (!etb)
                {

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)