diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-02-01 06:04:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-01 11:53:10 -0500 |
commit | 70e51015768439a5c305a42fdaa0abe5cc109bcf (patch) | |
tree | 66d02def41d4f65f9b8ae2f4b52e4f21056f4f13 /drivers | |
parent | cc0fa84a01d328a1ad70076b90f08281c4c79f92 (diff) |
[PATCH] tsunami_flash: fix "parse error before ';' token"
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/maps/tsunami_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/tsunami_flash.c b/drivers/mtd/maps/tsunami_flash.c index 9e21e6c02f80..0f915ac3102e 100644 --- a/drivers/mtd/maps/tsunami_flash.c +++ b/drivers/mtd/maps/tsunami_flash.c | |||
@@ -62,7 +62,7 @@ static void tsunami_flash_copy_to( | |||
62 | static struct map_info tsunami_flash_map = { | 62 | static struct map_info tsunami_flash_map = { |
63 | .name = "flash chip on the Tsunami TIG bus", | 63 | .name = "flash chip on the Tsunami TIG bus", |
64 | .size = MAX_TIG_FLASH_SIZE, | 64 | .size = MAX_TIG_FLASH_SIZE, |
65 | .phys = NO_XIP; | 65 | .phys = NO_XIP, |
66 | .bankwidth = 1, | 66 | .bankwidth = 1, |
67 | .read = tsunami_flash_read8, | 67 | .read = tsunami_flash_read8, |
68 | .copy_from = tsunami_flash_copy_from, | 68 | .copy_from = tsunami_flash_copy_from, |