.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2015 Imagination Technologies |
---|
3 | 4 | * Author: Alex Smith <alex.smith@imgtec.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 | #include <asm/sgidefs.h> |
---|
12 | | - |
---|
13 | | -#if _MIPS_SIM != _MIPS_SIM_ABI64 && defined(CONFIG_64BIT) |
---|
14 | | - |
---|
15 | | -/* Building 32-bit VDSO for the 64-bit kernel. Fake a 32-bit Kconfig. */ |
---|
16 | | -#define BUILD_VDSO32_64 |
---|
17 | | -#undef CONFIG_64BIT |
---|
18 | | -#define CONFIG_32BIT 1 |
---|
19 | | -#ifndef __ASSEMBLY__ |
---|
20 | | -#include <asm-generic/atomic64.h> |
---|
21 | | -#endif |
---|
22 | | -#endif |
---|
23 | 8 | |
---|
24 | 9 | #ifndef __ASSEMBLY__ |
---|
25 | 10 | |
---|