summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c
blob: 368c67744ff07ba46ca92c4d707b4895f5ba4c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * Under GPLv2
 */

#include <common.h>
#include <bootstrap.h>
#include <mach/bootstrap.h>

#ifdef CONFIG_MTD_DATAFLASH
void * bootstrap_board_read_dataflash(void)
{
	return bootstrap_read_devfs("dataflash0", false, 0xffc0, 204864, 204864);
}
#endif