init_helpers.c 240 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved.
  4. */
  5. #include <init.h>
  6. #include <asm/cache.h>
  7. #include <common.h>
  8. int init_cache_f_r(void)
  9. {
  10. sync_n_cleanup_cache_all();
  11. return 0;
  12. }