mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-09-16 12:22:14 +02:00
20 lines
219 B
C
20 lines
219 B
C
/*
|
|
* Copyright (C) 2017-2020 Alibaba Group Holding Limited
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include "ddr.h"
|
|
|
|
//FPGA mode
|
|
#define FPGA
|
|
|
|
int init_ddr(void){
|
|
#ifdef FPGA
|
|
|
|
#else //ASIC
|
|
|
|
#endif
|
|
return 0;
|
|
}
|