.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * |
---|
3 | 4 | * Copyright (C) 2008-2009 ST-Ericsson AB |
---|
4 | | - * License terms: GNU General Public License (GPL) version 2 |
---|
5 | 5 | * |
---|
6 | 6 | * Author: Rickard Andersson <rickard.andersson@stericsson.com> |
---|
7 | 7 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
---|
8 | | - * |
---|
9 | 8 | */ |
---|
10 | 9 | #ifndef __ASMARM_TCM_H |
---|
11 | 10 | #define __ASMARM_TCM_H |
---|
.. | .. |
---|
17 | 16 | #include <linux/compiler.h> |
---|
18 | 17 | |
---|
19 | 18 | /* Tag variables with this */ |
---|
20 | | -#define __tcmdata __section(.tcm.data) |
---|
| 19 | +#define __tcmdata __section(".tcm.data") |
---|
21 | 20 | /* Tag constants with this */ |
---|
22 | | -#define __tcmconst __section(.tcm.rodata) |
---|
| 21 | +#define __tcmconst __section(".tcm.rodata") |
---|
23 | 22 | /* Tag functions inside TCM called from outside TCM with this */ |
---|
24 | | -#define __tcmfunc __attribute__((long_call)) __section(.tcm.text) noinline |
---|
| 23 | +#define __tcmfunc __attribute__((long_call)) __section(".tcm.text") noinline |
---|
25 | 24 | /* Tag function inside TCM called from inside TCM with this */ |
---|
26 | | -#define __tcmlocalfunc __section(.tcm.text) |
---|
| 25 | +#define __tcmlocalfunc __section(".tcm.text") |
---|
27 | 26 | |
---|
28 | 27 | void *tcm_alloc(size_t len); |
---|
29 | 28 | void tcm_free(void *addr, size_t len); |
---|