diff options
Diffstat (limited to 'arch/arm/vfp')
-rw-r--r-- | arch/arm/vfp/entry.S | 5 | ||||
-rw-r--r-- | arch/arm/vfp/vfp.h | 5 | ||||
-rw-r--r-- | arch/arm/vfp/vfphw.S | 5 | ||||
-rw-r--r-- | arch/arm/vfp/vfpinstr.h | 5 | ||||
-rw-r--r-- | arch/arm/vfp/vfpmodule.c | 5 |
5 files changed, 5 insertions, 20 deletions
diff --git a/arch/arm/vfp/entry.S b/arch/arm/vfp/entry.S index 2e78760f3495..0186cf9da890 100644 --- a/arch/arm/vfp/entry.S +++ b/arch/arm/vfp/entry.S | |||
@@ -1,12 +1,9 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * linux/arch/arm/vfp/entry.S | 3 | * linux/arch/arm/vfp/entry.S |
3 | * | 4 | * |
4 | * Copyright (C) 2004 ARM Limited. | 5 | * Copyright (C) 2004 ARM Limited. |
5 | * Written by Deep Blue Solutions Limited. | 6 | * Written by Deep Blue Solutions Limited. |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | 7 | */ |
11 | #include <linux/init.h> | 8 | #include <linux/init.h> |
12 | #include <linux/linkage.h> | 9 | #include <linux/linkage.h> |
diff --git a/arch/arm/vfp/vfp.h b/arch/arm/vfp/vfp.h index 89773e5ddf35..5cd6d5053271 100644 --- a/arch/arm/vfp/vfp.h +++ b/arch/arm/vfp/vfp.h | |||
@@ -1,12 +1,9 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * linux/arch/arm/vfp/vfp.h | 3 | * linux/arch/arm/vfp/vfp.h |
3 | * | 4 | * |
4 | * Copyright (C) 2004 ARM Limited. | 5 | * Copyright (C) 2004 ARM Limited. |
5 | * Written by Deep Blue Solutions Limited. | 6 | * Written by Deep Blue Solutions Limited. |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | 7 | */ |
11 | 8 | ||
12 | static inline u32 vfp_shiftright32jamming(u32 val, unsigned int shift) | 9 | static inline u32 vfp_shiftright32jamming(u32 val, unsigned int shift) |
diff --git a/arch/arm/vfp/vfphw.S b/arch/arm/vfp/vfphw.S index f74a8f7e5f84..b2e560290860 100644 --- a/arch/arm/vfp/vfphw.S +++ b/arch/arm/vfp/vfphw.S | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * linux/arch/arm/vfp/vfphw.S | 3 | * linux/arch/arm/vfp/vfphw.S |
3 | * | 4 | * |
4 | * Copyright (C) 2004 ARM Limited. | 5 | * Copyright (C) 2004 ARM Limited. |
5 | * Written by Deep Blue Solutions Limited. | 6 | * Written by Deep Blue Solutions Limited. |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * This code is called from the kernel's undefined instruction trap. | 8 | * This code is called from the kernel's undefined instruction trap. |
12 | * r9 holds the return address for successful handling. | 9 | * r9 holds the return address for successful handling. |
13 | * lr holds the return address for unrecognised instructions. | 10 | * lr holds the return address for unrecognised instructions. |
diff --git a/arch/arm/vfp/vfpinstr.h b/arch/arm/vfp/vfpinstr.h index 15b95b5ab97e..38dc154e39ff 100644 --- a/arch/arm/vfp/vfpinstr.h +++ b/arch/arm/vfp/vfpinstr.h | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * linux/arch/arm/vfp/vfpinstr.h | 3 | * linux/arch/arm/vfp/vfpinstr.h |
3 | * | 4 | * |
4 | * Copyright (C) 2004 ARM Limited. | 5 | * Copyright (C) 2004 ARM Limited. |
5 | * Written by Deep Blue Solutions Limited. | 6 | * Written by Deep Blue Solutions Limited. |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * VFP instruction masks. | 8 | * VFP instruction masks. |
12 | */ | 9 | */ |
13 | #define INST_CPRTDO(inst) (((inst) & 0x0f000000) == 0x0e000000) | 10 | #define INST_CPRTDO(inst) (((inst) & 0x0f000000) == 0x0e000000) |
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index ee7b07938dd5..8c9e7f9f0277 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c | |||
@@ -1,12 +1,9 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * linux/arch/arm/vfp/vfpmodule.c | 3 | * linux/arch/arm/vfp/vfpmodule.c |
3 | * | 4 | * |
4 | * Copyright (C) 2004 ARM Limited. | 5 | * Copyright (C) 2004 ARM Limited. |
5 | * Written by Deep Blue Solutions Limited. | 6 | * Written by Deep Blue Solutions Limited. |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | 7 | */ |
11 | #include <linux/types.h> | 8 | #include <linux/types.h> |
12 | #include <linux/cpu.h> | 9 | #include <linux/cpu.h> |