We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/hno/allwinner-boot/blob/lichee-a20-dev/boot1/core/standby/dram_standby.c
It has neumerous issues during compilation, first off its got patch outputs in the C file so compilers complain. Also this segment:
static __s32 backup_dram_cal_val(int standby_mode) { #ifdef SAVE_SDR_ZQSR_TO_RTC @@ -474,17 +477,17 @@ #else #error "super standby has not save SDR_ZQSR" #endif __s32 dram_power_save_process(boot_dram_para_t* standby_dram_para)
is weird, one c prototype declaration inside another one.
Also in :
__u32 dram_power_up_process(boot_dram_para_t* standby_dram_para) { __u32 i; __u32 reg_val;
init_DRAM(standby_dram_para);
init_DRAM is not declared in this section of code, but rather in boot0/drv/init_dram and with different kind of parameter
boot0/drv/init_dram/init_DRAM.h: extern int init_DRAM(int type);
not boot_dram_para_t* parameter as called with.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/hno/allwinner-boot/blob/lichee-a20-dev/boot1/core/standby/dram_standby.c
It has neumerous issues during compilation, first off its got patch outputs in the C file so compilers complain. Also this segment:
static __s32 backup_dram_cal_val(int standby_mode)
{
#ifdef SAVE_SDR_ZQSR_TO_RTC
@@ -474,17 +477,17 @@
#else
#error "super standby has not save SDR_ZQSR"
#endif
__s32 dram_power_save_process(boot_dram_para_t* standby_dram_para)
{
is weird, one c prototype declaration inside another one.
Also in :
__u32 dram_power_up_process(boot_dram_para_t* standby_dram_para)
{
__u32 i;
__u32 reg_val;
}
init_DRAM is not declared in this section of code, but rather in boot0/drv/init_dram
and with different kind of parameter
boot0/drv/init_dram/init_DRAM.h: extern int init_DRAM(int type);
not boot_dram_para_t* parameter as called with.
The text was updated successfully, but these errors were encountered: