| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2016 Imagination Technologies |
|---|
| 3 | 4 | * Author: Paul Burton <paul.burton@mips.com> |
|---|
| 4 | | - * |
|---|
| 5 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 6 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 7 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 8 | | - * option) any later version. |
|---|
| 9 | 5 | */ |
|---|
| 10 | 6 | |
|---|
| 11 | 7 | #ifndef __MIPS_ASM_MACHINE_H__ |
|---|
| .. | .. |
|---|
| 27 | 23 | |
|---|
| 28 | 24 | #define MIPS_MACHINE(name) \ |
|---|
| 29 | 25 | static const struct mips_machine __mips_mach_##name \ |
|---|
| 30 | | - __used __section(.mips.machines.init) |
|---|
| 26 | + __used __section(".mips.machines.init") |
|---|
| 31 | 27 | |
|---|
| 32 | 28 | #define for_each_mips_machine(mach) \ |
|---|
| 33 | 29 | for ((mach) = (struct mips_machine *)&__mips_machines_start; \ |
|---|