Skip to content
Snippets Groups Projects
Commit 83fc7fcf authored by oharboe's avatar oharboe
Browse files

David Anders: fixes an issue with large block nand flash address where the...

David Anders: fixes an issue with large block nand flash address where the beginning of the OOB area is always selected instead of the beginning of a page when needed

git-svn-id: svn://svn.berlios.de/openocd/trunk@729 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent c5df3ce1
No related branches found
No related tags found
No related merge requests found
......@@ -806,7 +806,10 @@ int nand_read_page_raw(struct nand_device_s *device, u32 page, u8 *data, u32 dat
* 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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment