init_helpers.c 222 B

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