| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * arch/powerpc/math-emu/math_efp.c |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 12 | 13 | * Description: |
|---|
| 13 | 14 | * This file is the exception handler to make E500 SPE instructions |
|---|
| 14 | 15 | * fully comply with IEEE-754 floating point standard. |
|---|
| 15 | | - * |
|---|
| 16 | | - * This program is free software; you can redistribute it and/or |
|---|
| 17 | | - * modify it under the terms of the GNU General Public License |
|---|
| 18 | | - * as published by the Free Software Foundation; either version |
|---|
| 19 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 20 | 16 | */ |
|---|
| 21 | 17 | |
|---|
| 22 | 18 | #include <linux/types.h> |
|---|
| 23 | 19 | #include <linux/prctl.h> |
|---|
| 20 | +#include <linux/module.h> |
|---|
| 24 | 21 | |
|---|
| 25 | 22 | #include <linux/uaccess.h> |
|---|
| 26 | 23 | #include <asm/reg.h> |
|---|