Ensure ROCKCHIP_DEVICE_SETTINGS is defined before including rk3588_common.h in board include/configs files. Signed-off-by: Jonas Karlman <jonas@kwiboo.se> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
16 lines
336 B
C
16 lines
336 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2024 Khadas Technology Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __KHADAS_EDGE2_RK3588_H
|
|
#define __KHADAS_EDGE2_RK3588_H
|
|
|
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
#include <configs/rk3588_common.h>
|
|
|
|
#endif /* __KHADAS_EDGE2_RK3588_H */
|