.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * ACPI support for int340x thermal drivers |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2014, Intel Corporation |
---|
5 | 6 | * Authors: Zhang Rui <rui.zhang@intel.com> |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or modify |
---|
8 | | - * it under the terms of the GNU General Public License version 2 as |
---|
9 | | - * published by the Free Software Foundation. |
---|
10 | 7 | */ |
---|
11 | 8 | |
---|
12 | 9 | #include <linux/acpi.h> |
---|
13 | 10 | #include <linux/module.h> |
---|
14 | 11 | |
---|
15 | | -#include "internal.h" |
---|
| 12 | +#include "../internal.h" |
---|
16 | 13 | |
---|
17 | 14 | #define INT3401_DEVICE 0X01 |
---|
18 | 15 | static const struct acpi_device_id int340x_thermal_device_ids[] = { |
---|
.. | .. |
---|
27 | 24 | {"INT3409"}, |
---|
28 | 25 | {"INT340A"}, |
---|
29 | 26 | {"INT340B"}, |
---|
| 27 | + {"INTC1040"}, |
---|
| 28 | + {"INTC1041"}, |
---|
| 29 | + {"INTC1043"}, |
---|
| 30 | + {"INTC1044"}, |
---|
| 31 | + {"INTC1045"}, |
---|
| 32 | + {"INTC1046"}, |
---|
| 33 | + {"INTC1047"}, |
---|
| 34 | + {"INTC1048"}, |
---|
| 35 | + {"INTC1049"}, |
---|
| 36 | + {"INTC1060"}, |
---|
| 37 | + {"INTC1061"}, |
---|
30 | 38 | {""}, |
---|
31 | 39 | }; |
---|
32 | 40 | |
---|