summaryrefslogtreecommitdiff
path: root/src/flash/nor/aduc702x.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2010-01-29 13:52:08 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2010-01-29 13:52:08 -0800
commit303b493c229475df26d69d102bbaf5ae5e5e7a3f (patch)
tree28256cf94d6157aa159f1aa781f0f6ba5f8d998c /src/flash/nor/aduc702x.c
parentcd3017cffa68e6f56419177e66332f86ab45675b (diff)
downloadopenocd+libswd-303b493c229475df26d69d102bbaf5ae5e5e7a3f.tar.gz
openocd+libswd-303b493c229475df26d69d102bbaf5ae5e5e7a3f.tar.bz2
openocd+libswd-303b493c229475df26d69d102bbaf5ae5e5e7a3f.tar.xz
openocd+libswd-303b493c229475df26d69d102bbaf5ae5e5e7a3f.zip
NOR: cleanup driver decls
Fix goofy struct indents. Function names *are* their addresses. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/flash/nor/aduc702x.c')
-rw-r--r--src/flash/nor/aduc702x.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/flash/nor/aduc702x.c b/src/flash/nor/aduc702x.c
index 211b54e7..7e81b327 100644
--- a/src/flash/nor/aduc702x.c
+++ b/src/flash/nor/aduc702x.c
@@ -412,14 +412,14 @@ static int aduc702x_check_flash_completion(struct target* target, unsigned int t
}
struct flash_driver aduc702x_flash = {
- .name = "aduc702x",
- .flash_bank_command = &aduc702x_flash_bank_command,
- .erase = &aduc702x_erase,
- .protect = &aduc702x_protect,
- .write = &aduc702x_write,
- .probe = &aduc702x_probe,
- .auto_probe = &aduc702x_probe,
- .erase_check = &default_flash_blank_check,
- .protect_check = &aduc702x_protect_check,
- .info = &aduc702x_info
- };
+ .name = "aduc702x",
+ .flash_bank_command = aduc702x_flash_bank_command,
+ .erase = aduc702x_erase,
+ .protect = aduc702x_protect,
+ .write = aduc702x_write,
+ .probe = aduc702x_probe,
+ .auto_probe = aduc702x_probe,
+ .erase_check = default_flash_blank_check,
+ .protect_check = aduc702x_protect_check,
+ .info = aduc702x_info
+};