/* Use this hook to save our SDRAM parameters */ int misc_init_r(void) { int ret; ret = mrccache_save(); if (ret) printf("Unable to save MRC data: %d\n", ret); return 0; }
/* Use this hook to save our SDRAM parameters */ int misc_init_r(void) { int ret; ret = mrccache_save(); if (ret) printf("Unable to save MRC data: %d\n", ret); else debug("Saved MRC cache data\n"); return 0; }
int arch_misc_init(void) { #ifdef CONFIG_ENABLE_MRC_CACHE /* * We intend not to check any return value here, as even MRC cache * is not saved successfully, it is not a severe error that will * prevent system from continuing to boot. */ mrccache_save(); #endif return 0; }