mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 12:46:14 +02:00
This patch renames the board directory from board/freescale to board/nxp because NXP now provides Board Support Packages (BSPs) and tools for the former Freescale i.MX and other i.MX products. All relevant references have been updated accordingly. This change does not affect functionality. Signed-off-by: Alice Guo <alice.guo@nxp.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
13 lines
262 B
C
13 lines
262 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2016 Google, Inc
|
|
*/
|
|
|
|
#ifndef __FREESCALE_BOARD_SPL_H
|
|
#define __FREESCALE_BOARD_SPL_H
|
|
|
|
void fsl_spi_spl_load_image(uint32_t offs, unsigned int size, void *vdst);
|
|
void fsl_spi_boot(void) __noreturn;
|
|
|
|
#endif
|