init_helpers.c 251 B

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