summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorEvan Lojewski <github@meklort.com>2020-02-23 23:00:56 -0700
committerGitHub <noreply@github.com>2020-02-23 23:00:56 -0700
commit36dc3c2aabc9985f040eb7702bda87fdd068c524 (patch)
tree9177ebde6f883244187133dfa540bf63184a05fa /libs
parentef094ca959e0e750ece4fbb735f458ade3a84f51 (diff)
downloadbcm5719-ortega-36dc3c2aabc9985f040eb7702bda87fdd068c524.tar.gz
bcm5719-ortega-36dc3c2aabc9985f040eb7702bda87fdd068c524.zip
nvram: Re-run clang-format (#37)
Diffstat (limited to 'libs')
-rw-r--r--libs/NVRam/bitbang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/NVRam/bitbang.c b/libs/NVRam/bitbang.c
index af99155..3fc96b7 100644
--- a/libs/NVRam/bitbang.c
+++ b/libs/NVRam/bitbang.c
@@ -198,7 +198,7 @@ uint32_t NVRam_bitbang_readWord(uint32_t address)
};
uint8_t get_bytes[sizeof(send_bytes)];
uint32_t num_bytes = sizeof(send_bytes);
- if(NVRam_sendAndGetBytes(send_bytes, get_bytes, num_bytes))
+ if (NVRam_sendAndGetBytes(send_bytes, get_bytes, num_bytes))
{
uint32_t read_word = (get_bytes[4]) | (get_bytes[5] << 8) | (get_bytes[6] << 16) | (get_bytes[7] << 24);
OpenPOWER on IntegriCloud