.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com) |
---|
3 | 4 | * |
---|
4 | 5 | * based on METAG mach/arch.h (which in turn was based on ARM) |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License version 2 as |
---|
8 | | - * published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #ifndef _ASM_ARC_MACH_DESC_H_ |
---|
.. | .. |
---|
56 | 53 | */ |
---|
57 | 54 | #define MACHINE_START(_type, _name) \ |
---|
58 | 55 | static const struct machine_desc __mach_desc_##_type \ |
---|
59 | | -__used \ |
---|
60 | | -__attribute__((__section__(".arch.info.init"))) = { \ |
---|
| 56 | +__used __section(".arch.info.init") = { \ |
---|
61 | 57 | .name = _name, |
---|
62 | 58 | |
---|
63 | 59 | #define MACHINE_END \ |
---|