mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00

The correct spelling is R-Car, including the dash, update the usage. Kconfig strings and comment changes only, no functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
23 lines
370 B
C
23 lines
370 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Specialty padding for the R-Car Gen2 SPL JTAG loading
|
|
*/
|
|
|
|
#ifndef __BOOT0_H
|
|
#define __BOOT0_H
|
|
|
|
_start:
|
|
ARM_VECTORS
|
|
|
|
#ifdef CONFIG_XPL_BUILD
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
#endif
|
|
|
|
#endif /* __BOOT0_H */
|