summaryrefslogtreecommitdiff
path: root/firmware/drivers/ata_flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/ata_flash.c')
-rw-r--r--firmware/drivers/ata_flash.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/firmware/drivers/ata_flash.c b/firmware/drivers/ata_flash.c
index de2988b9be..96ea1cfa68 100644
--- a/firmware/drivers/ata_flash.c
+++ b/firmware/drivers/ata_flash.c
@@ -73,7 +73,7 @@ struct flash_disk
73 73
74static struct flash_disk flash_disk; 74static struct flash_disk flash_disk;
75 75
76void flash_select_chip(int no, int sel) 76static void flash_select_chip(int no, int sel)
77{ 77{
78#if CONFIG_FLASH == FLASH_IFP7XX 78#if CONFIG_FLASH == FLASH_IFP7XX
79 if (sel) 79 if (sel)
@@ -115,7 +115,7 @@ static void flash_wait_ready(void)
115 115
116static unsigned char model_n_sectors_order[] = {0, 19, 20}; 116static unsigned char model_n_sectors_order[] = {0, 19, 20};
117 117
118int flash_map_sector(int sector, int* chip, int* chip_sector) 118static int flash_map_sector(int sector, int* chip, int* chip_sector)
119{ 119{
120 int ord, c; 120 int ord, c;
121 if (flash_disk.model == FLASH_MODEL_NONE) 121 if (flash_disk.model == FLASH_MODEL_NONE)
@@ -132,7 +132,7 @@ int flash_map_sector(int sector, int* chip, int* chip_sector)
132 return 0; 132 return 0;
133} 133}
134 134
135int flash_read_id(int no) { 135static int flash_read_id(int no) {
136 int id; 136 int id;
137 137
138 flash_select_chip(no, 1); 138 flash_select_chip(no, 1);
@@ -146,7 +146,7 @@ int flash_read_id(int no) {
146 return id; 146 return id;
147} 147}
148 148
149int flash_read_sector(int sector, unsigned char* buf, 149static int flash_read_sector(int sector, unsigned char* buf,
150 unsigned char* oob) 150 unsigned char* oob)
151{ 151{
152 unsigned long *bufl = (unsigned long *)buf; 152 unsigned long *bufl = (unsigned long *)buf;
@@ -204,7 +204,7 @@ int flash_read_sector(int sector, unsigned char* buf,
204 return 0; 204 return 0;
205} 205}
206 206
207int flash_read_sector_oob(int sector, unsigned char* oob) 207static int flash_read_sector_oob(int sector, unsigned char* oob)
208{ 208{
209 int chip, chip_sector; 209 int chip, chip_sector;
210 int i; 210 int i;
@@ -294,7 +294,7 @@ static int flash_get_logical_block_no(unsigned char* oob)
294 return -1; 294 return -1;
295} 295}
296 296
297int flash_disk_scan(void) 297static int flash_disk_scan(void)
298{ 298{
299 int n_segments, n_phblocks; 299 int n_segments, n_phblocks;
300 unsigned char oob[16]; 300 unsigned char oob[16];
@@ -327,7 +327,7 @@ int flash_disk_scan(void)
327 return 0; 327 return 0;
328} 328}
329 329
330int flash_disk_find_block(int block) 330static int flash_disk_find_block(int block)
331{ 331{
332 int seg, bmod, phb; 332 int seg, bmod, phb;
333 unsigned char oob[16]; 333 unsigned char oob[16];
@@ -356,7 +356,7 @@ int flash_disk_find_block(int block)
356 return flash_disk.cur_phblock_start; 356 return flash_disk.cur_phblock_start;
357} 357}
358 358
359int flash_disk_read_sectors(unsigned long start, 359static int flash_disk_read_sectors(unsigned long start,
360 int count, 360 int count,
361 void* buf) 361 void* buf)
362{ 362{