| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * linux/include/asm/setup.h |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 1997-1999 Russell King |
|---|
| 5 | 6 | * |
|---|
| 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 | | - * |
|---|
| 10 | 7 | * Structure passed to kernel to tell it about the |
|---|
| 11 | | - * hardware it's running on. See Documentation/arm/Setup |
|---|
| 8 | + * hardware it's running on. See Documentation/arm/setup.rst |
|---|
| 12 | 9 | * for more info. |
|---|
| 13 | 10 | */ |
|---|
| 14 | 11 | #ifndef __ASMARM_SETUP_H |
|---|
| .. | .. |
|---|
| 17 | 14 | #include <uapi/asm/setup.h> |
|---|
| 18 | 15 | |
|---|
| 19 | 16 | |
|---|
| 20 | | -#define __tag __used __attribute__((__section__(".taglist.init"))) |
|---|
| 17 | +#define __tag __used __section(".taglist.init") |
|---|
| 21 | 18 | #define __tagtable(tag, fn) \ |
|---|
| 22 | 19 | static const struct tagtable __tagtable_##fn __tag = { tag, fn } |
|---|
| 23 | 20 | |
|---|