From 303b493c229475df26d69d102bbaf5ae5e5e7a3f Mon Sep 17 00:00:00 2001 From: David Brownell Date: Fri, 29 Jan 2010 13:52:08 -0800 Subject: NOR: cleanup driver decls Fix goofy struct indents. Function names *are* their addresses. Signed-off-by: David Brownell --- src/flash/nor/faux.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/flash/nor/faux.c') diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c index 948f3055..e1e77eaa 100644 --- a/src/flash/nor/faux.c +++ b/src/flash/nor/faux.c @@ -135,15 +135,15 @@ static const struct command_registration faux_command_handlers[] = { }; struct flash_driver faux_flash = { - .name = "faux", - .commands = faux_command_handlers, - .flash_bank_command = &faux_flash_bank_command, - .erase = &faux_erase, - .protect = &faux_protect, - .write = &faux_write, - .probe = &faux_probe, - .auto_probe = &faux_probe, - .erase_check = &default_flash_blank_check, - .protect_check = &faux_protect_check, - .info = &faux_info - }; + .name = "faux", + .commands = faux_command_handlers, + .flash_bank_command = faux_flash_bank_command, + .erase = faux_erase, + .protect = faux_protect, + .write = faux_write, + .probe = faux_probe, + .auto_probe = faux_probe, + .erase_check = default_flash_blank_check, + .protect_check = faux_protect_check, + .info = faux_info +}; -- cgit v1.2.3