]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/MAI/AmigaOneG3SE/flash.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / board / MAI / AmigaOneG3SE / flash.c
CommitLineData
c7de829c
WD
1#include <common.h>
2#include <flash.h>
3
6d0f6bcf 4flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
c7de829c
WD
5
6
7unsigned long flash_init(void)
8{
9 int i;
10
6d0f6bcf 11 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
c7de829c
WD
12 {
13 flash_info[i].flash_id = FLASH_UNKNOWN;
14 flash_info[i].sector_count = 0;
15 flash_info[i].size = 0;
16 }
17
18
19 return 1;
20}
21
22int flash_erase(flash_info_t *info, int s_first, int s_last)
23{
24 return 1;
25}
26
27void flash_print_info(flash_info_t *info)
28{
29 printf("No flashrom installed\n");
30}
31
32int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
33{
34 return 0;
35}