mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
16 lines
305 B
C
16 lines
305 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (c) 2022 Collabora Ltd.
|
||
|
*/
|
||
|
|
||
|
#ifndef __ROCK5B_RK3588_H
|
||
|
#define __ROCK5B_RK3588_H
|
||
|
|
||
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
||
|
"stdout=serial,vidconsole\0" \
|
||
|
"stderr=serial,vidconsole\0"
|
||
|
|
||
|
#include <configs/rk3588_common.h>
|
||
|
|
||
|
#endif /* __ROCK5B_RK3588_H */
|