mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
22 lines
459 B
C
22 lines
459 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (c) 2022 Edgeble AI Technologies Pvt. Ltd.
|
||
|
*/
|
||
|
|
||
|
#ifndef __NEURAL_COMPUTE_MODULE_2_H
|
||
|
#define __NEURAL_COMPUTE_MODULE_2_H
|
||
|
|
||
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
||
|
"stdout=serial,vidconsole\0" \
|
||
|
"stderr=serial,vidconsole\0"
|
||
|
|
||
|
#include <configs/rv1126_common.h>
|
||
|
|
||
|
#undef BOOT_TARGET_DEVICES
|
||
|
|
||
|
#define BOOT_TARGET_DEVICES(func) \
|
||
|
func(MMC, mmc, 0) \
|
||
|
func(MMC, mmc, 1)
|
||
|
|
||
|
#endif /* __NEURAL_COMPUTE_MODULE_2_H */
|