David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008-2009 ST-Ericsson AB |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | * TCM memory handling for ARM systems |
| 5 | * |
| 6 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
| 7 | * Author: Rickard Andersson <rickard.andersson@stericsson.com> |
| 8 | */ |
| 9 | |
| 10 | #ifdef CONFIG_HAVE_TCM |
| 11 | void __init tcm_init(void); |
| 12 | #else |
| 13 | /* No TCM support, just blank inlines to be optimized out */ |
| 14 | static inline void tcm_init(void) |
| 15 | { |
| 16 | } |
| 17 | #endif |