From: oharboe Date: Sun, 1 Mar 2009 20:54:22 +0000 (+0000) Subject: Nicolas Pitre nico at cam.org The code unconditionally writes into the oob area all... X-Git-Tag: v0.2.0~1117 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=857e9cb076a480108ea312ca00eaaac1d6fffb4d Nicolas Pitre nico at cam.org The code unconditionally writes into the oob area all the time. git-svn-id: svn://svn.berlios.de/openocd/trunk@1385 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/flash/nand.c b/src/flash/nand.c index 2344ede7b9..c42291ba00 100644 --- a/src/flash/nand.c +++ b/src/flash/nand.c @@ -911,7 +911,10 @@ int nand_write_page_raw(struct nand_device_s *device, u32 page, u8 *data, u32 da * or 2048 for the beginning of OOB area) */ device->controller->address(device, 0x0); - device->controller->address(device, 0x8); + if (data) + device->controller->address(device, 0x0); + else + device->controller->address(device, 0x8); /* row */ device->controller->address(device, page & 0xff);