nrf51: Remove pointer cast 30/3930/2
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>
Thu, 29 Dec 2016 11:19:11 +0000 (12:19 +0100)
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>
Wed, 29 Mar 2017 09:07:41 +0000 (10:07 +0100)
Int may not be 32 bit long.

Change-Id: I420f7efeb484eb35c1d7c20e1575b0b31ed8c9ff
Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Reviewed-on: http://openocd.zylin.com/3930
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
src/flash/nor/nrf51.c

index a41bc0598730ebafd1ae5c7d14af6979a96d3b05..e3f6c10ef1fb6d667f4c8e67d7a16b7e9fd50232 100644 (file)
@@ -690,14 +690,15 @@ static int nrf51_probe(struct flash_bank *bank)
 
                /* Note the register name is misleading,
                 * NRF51_FICR_CODESIZE is the number of pages in flash memory, not the number of bytes! */
-               res = target_read_u32(chip->target, NRF51_FICR_CODESIZE,
-                               (uint32_t *) &bank->num_sectors);
+               uint32_t num_sectors;
+               res = target_read_u32(chip->target, NRF51_FICR_CODESIZE, &num_sectors);
                if (res != ERROR_OK) {
                        LOG_ERROR("Couldn't read code memory size");
                        return res;
                }
 
-               bank->size = bank->num_sectors * chip->code_page_size;
+               bank->num_sectors = num_sectors;
+               bank->size = num_sectors * chip->code_page_size;
 
                if (spec && bank->size / 1024 != spec->flash_size_kb)
                        LOG_WARNING("Chip's reported Flash capacity does not match expected one");

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)