summaryrefslogtreecommitdiff
path: root/src/target/cortex_a8.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-09 04:22:23 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-09 09:44:33 -0800
commit3885ab5a5af7ece410ce3eeb1059da3ea950436a (patch)
tree97f0ec5c6570c5d87ba42819bde60be9fee6f0b5 /src/target/cortex_a8.h
parent42cafc9369088d2a5d5f633358a2a42aa7bbc0de (diff)
downloadopenocd+libswd-3885ab5a5af7ece410ce3eeb1059da3ea950436a.tar.gz
openocd+libswd-3885ab5a5af7ece410ce3eeb1059da3ea950436a.tar.bz2
openocd+libswd-3885ab5a5af7ece410ce3eeb1059da3ea950436a.tar.xz
openocd+libswd-3885ab5a5af7ece410ce3eeb1059da3ea950436a.zip
src/target: remove 'extern' and wrap headers
Remove extern keywords from function prototypes and wrap long lines.
Diffstat (limited to 'src/target/cortex_a8.h')
-rw-r--r--src/target/cortex_a8.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/target/cortex_a8.h b/src/target/cortex_a8.h
index b4cb3275..42cb0624 100644
--- a/src/target/cortex_a8.h
+++ b/src/target/cortex_a8.h
@@ -143,8 +143,13 @@ target_to_cortex_a8(struct target_s *target)
armv7a_common.armv4_5_common);
}
-extern int cortex_a8_init_arch_info(target_t *target, cortex_a8_common_t *cortex_a8, jtag_tap_t *tap);
-int cortex_a8_read_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
-int cortex_a8_write_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
+int cortex_a8_init_arch_info(target_t *target,
+ cortex_a8_common_t *cortex_a8, jtag_tap_t *tap);
+int cortex_a8_read_memory(struct target_s *target,
+ uint32_t address, uint32_t size,
+ uint32_t count, uint8_t *buffer);
+int cortex_a8_write_memory(struct target_s *target,
+ uint32_t address, uint32_t size,
+ uint32_t count, uint8_t *buffer);
#endif /* CORTEX_A8_H */