]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/pb1x00/flash.c
arm: imx6q: Add Engicam i.CoreM6 Solo/Duallite RQS Starter Kit initial support
[people/ms/u-boot.git] / board / pb1x00 / flash.c
CommitLineData
265817c7
WD
1/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
265817c7
WD
6 */
7
8#include <common.h>
9
6d0f6bcf 10flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
265817c7
WD
11
12/*-----------------------------------------------------------------------
13 * flash_init()
14 *
15 * sets up flash_info and returns size of FLASH (bytes)
16 */
17unsigned long flash_init (void)
18{
19 printf ("Skipping flash_init\n");
20 return (0);
21}
22
23int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
24{
25 printf ("write_buff not implemented\n");
26 return (-1);
27}