mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 05:42:58 +00:00
65abdd1978
Rename rmobile.h to renesas.h because all the chips are made by Renesas, while only a subset of them is from the R-Mobile line. Use the following command to perform the rename: " $ git grep -l 'include.*rmobile.h' | \ xargs -I {} sed -i '/include.*rmobile.h/ s@rmobile.h@renesas.h@g' {} " Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
14 lines
281 B
C
14 lines
281 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2023 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#ifndef __RENESAS_RZG2L_H
|
|
#define __RENESAS_RZG2L_H
|
|
|
|
#include <asm/arch/renesas.h>
|
|
|
|
/* console */
|
|
#define CFG_SYS_BAUDRATE_TABLE { 115200, 38400 }
|
|
|
|
#endif /* __RENESAS_RZG2L_H */
|