mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
16 lines
301 B
C
16 lines
301 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (c) 2020 Amarula Solutions(India)
|
||
|
*/
|
||
|
|
||
|
#ifndef __PX30_CORE_H
|
||
|
#define __PX30_CORE_H
|
||
|
|
||
|
#include <configs/px30_common.h>
|
||
|
|
||
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
||
|
"stdout=serial,vidconsole\0" \
|
||
|
"stderr=serial,vidconsole\0"
|
||
|
|
||
|
#endif /* __PX30_CORE_H */
|