forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-01-04 1543e317f1da31b75942316931e8f491a8920811
kernel/drivers/platform/x86/intel-smartconnect.c
....@@ -1,25 +1,10 @@
1
+// SPDX-License-Identifier: GPL-2.0+
12 /*
23 * Copyright 2013 Matthew Garrett <mjg59@srcf.ucam.org>
3
- *
4
- * This program is free software; you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License as published by
6
- * the Free Software Foundation; either version 2 of the License, or
7
- * (at your option) any later version.
8
- *
9
- * This program is distributed in the hope that it will be useful,
10
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- * GNU General Public License for more details.
13
- *
14
- * You should have received a copy of the GNU General Public License along
15
- * with this program; if not, write to the Free Software Foundation, Inc.,
16
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
174 */
185
19
-
20
-#include <linux/init.h>
21
-#include <linux/module.h>
226 #include <linux/acpi.h>
7
+#include <linux/module.h>
238
249 MODULE_LICENSE("GPL");
2510
....@@ -44,6 +29,7 @@
4429 {"INT33A0", 0},
4530 {"", 0}
4631 };
32
+MODULE_DEVICE_TABLE(acpi, smartconnect_ids);
4733
4834 static struct acpi_driver smartconnect_driver = {
4935 .owner = THIS_MODULE,
....@@ -56,5 +42,3 @@
5642 };
5743
5844 module_acpi_driver(smartconnect_driver);
59
-
60
-MODULE_DEVICE_TABLE(acpi, smartconnect_ids);