| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * FPU helper code to use FPU operations from inside the kernel |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2010 Alexander Graf (agraf@suse.de) |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or |
|---|
| 7 | | - * modify it under the terms of the GNU General Public License |
|---|
| 8 | | - * as published by the Free Software Foundation; either version |
|---|
| 9 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 10 | | - * |
|---|
| 11 | 6 | */ |
|---|
| 12 | 7 | |
|---|
| 8 | +#include <linux/pgtable.h> |
|---|
| 13 | 9 | #include <asm/reg.h> |
|---|
| 14 | 10 | #include <asm/page.h> |
|---|
| 15 | 11 | #include <asm/mmu.h> |
|---|
| 16 | | -#include <asm/pgtable.h> |
|---|
| 17 | 12 | #include <asm/cputable.h> |
|---|
| 18 | 13 | #include <asm/cache.h> |
|---|
| 19 | 14 | #include <asm/thread_info.h> |
|---|