summaryrefslogtreecommitdiff
path: root/src/flash/nor/str9x.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/str9x.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/str9x.c')
-rw-r--r--src/flash/nor/str9x.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c
index d0c1278f..0875851e 100644
--- a/src/flash/nor/str9x.c
+++ b/src/flash/nor/str9x.c
@@ -668,7 +668,7 @@ COMMAND_HANDLER(str9x_handle_flash_config_command)
static const struct command_registration str9x_config_command_handlers[] = {
{
.name = "flash_config",
- .handler = &str9x_handle_flash_config_command,
+ .handler = str9x_handle_flash_config_command,
.mode = COMMAND_EXEC,
.help = "Configure str9x flash controller, prior to "
"programming the flash.",
@@ -687,15 +687,15 @@ static const struct command_registration str9x_command_handlers[] = {
};
struct flash_driver str9x_flash = {
- .name = "str9x",
- .commands = str9x_command_handlers,
- .flash_bank_command = &str9x_flash_bank_command,
- .erase = &str9x_erase,
- .protect = &str9x_protect,
- .write = &str9x_write,
- .probe = &str9x_probe,
- .auto_probe = &str9x_probe,
- .erase_check = &default_flash_blank_check,
- .protect_check = &str9x_protect_check,
- .info = &str9x_info,
- };
+ .name = "str9x",
+ .commands = str9x_command_handlers,
+ .flash_bank_command = str9x_flash_bank_command,
+ .erase = str9x_erase,
+ .protect = str9x_protect,
+ .write = str9x_write,
+ .probe = str9x_probe,
+ .auto_probe = str9x_probe,
+ .erase_check = default_flash_blank_check,
+ .protect_check = str9x_protect_check,
+ .info = str9x_info,
+};