.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | | - * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/ |
---|
| 3 | + * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/ |
---|
3 | 4 | * |
---|
4 | 5 | * 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. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #include <linux/interrupt.h> |
---|
.. | .. |
---|
30 | 27 | static const struct of_device_id of_lp87565_match_table[] = { |
---|
31 | 28 | { .compatible = "ti,lp87565", }, |
---|
32 | 29 | { |
---|
| 30 | + .compatible = "ti,lp87524-q1", |
---|
| 31 | + .data = (void *)LP87565_DEVICE_TYPE_LP87524_Q1, |
---|
| 32 | + }, |
---|
| 33 | + { |
---|
33 | 34 | .compatible = "ti,lp87565-q1", |
---|
34 | 35 | .data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1, |
---|
35 | 36 | }, |
---|
| 37 | + { |
---|
| 38 | + .compatible = "ti,lp87561-q1", |
---|
| 39 | + .data = (void *)LP87565_DEVICE_TYPE_LP87561_Q1, |
---|
| 40 | + }, |
---|
36 | 41 | {} |
---|
37 | 42 | }; |
---|
38 | 43 | MODULE_DEVICE_TABLE(of, of_lp87565_match_table); |
---|