tcm.h 419 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2008-2009 ST-Ericsson AB
  4. * TCM memory handling for ARM systems
  5. *
  6. * Author: Linus Walleij <[email protected]>
  7. * Author: Rickard Andersson <[email protected]>
  8. */
  9. #ifdef CONFIG_HAVE_TCM
  10. void __init tcm_init(void);
  11. #else
  12. /* No TCM support, just blank inlines to be optimized out */
  13. static inline void tcm_init(void)
  14. {
  15. }
  16. #endif