forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-09-20 a36159eec6ca17402b0e146b86efaf76568dc353
kernel/arch/openrisc/kernel/or32_ksyms.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * OpenRISC or32_ksyms.c
34 *
....@@ -8,11 +9,6 @@
89 * Modifications for the OpenRISC architecture:
910 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
1011 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11
- *
12
- * This program is free software; you can redistribute it and/or
13
- * modify it under the terms of the GNU General Public License
14
- * as published by the Free Software Foundation; either version
15
- * 2 of the License, or (at your option) any later version.
1612 */
1713
1814 #include <linux/export.h>
....@@ -22,6 +18,7 @@
2218 #include <linux/interrupt.h>
2319 #include <linux/vmalloc.h>
2420 #include <linux/semaphore.h>
21
+#include <linux/pgtable.h>
2522
2623 #include <asm/processor.h>
2724 #include <linux/uaccess.h>
....@@ -29,8 +26,6 @@
2926 #include <asm/io.h>
3027 #include <asm/hardirq.h>
3128 #include <asm/delay.h>
32
-#include <asm/pgalloc.h>
33
-#include <asm/pgtable.h>
3429
3530 #define DECLARE_EXPORT(name) extern void name(void); EXPORT_SYMBOL(name)
3631