hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/mfd/lp87565.c
....@@ -1,11 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
2
- * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
3
+ * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/
34 *
45 * Author: Keerthy <j-keerthy@ti.com>
5
- *
6
- * This program is free software; you can redistribute it and/or
7
- * modify it under the terms of the GNU General Public License as
8
- * published by the Free Software Foundation version 2.
96 */
107
118 #include <linux/interrupt.h>
....@@ -30,9 +27,17 @@
3027 static const struct of_device_id of_lp87565_match_table[] = {
3128 { .compatible = "ti,lp87565", },
3229 {
30
+ .compatible = "ti,lp87524-q1",
31
+ .data = (void *)LP87565_DEVICE_TYPE_LP87524_Q1,
32
+ },
33
+ {
3334 .compatible = "ti,lp87565-q1",
3435 .data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1,
3536 },
37
+ {
38
+ .compatible = "ti,lp87561-q1",
39
+ .data = (void *)LP87565_DEVICE_TYPE_LP87561_Q1,
40
+ },
3641 {}
3742 };
3843 MODULE_DEVICE_TABLE(of, of_lp87565_match_table);