Kyle Swenson | 7900a3c | 2021-08-12 14:34:44 -0600 | [diff] [blame] | 1 | /* |
| 2 | * ltc4266-qcom.c |
| 3 | * |
| 4 | * LTC4266 Qualcomm specific bits |
| 5 | * |
| 6 | * Author: Cradlepoint Technology, Inc. <source@cradlepoint.com> |
| 7 | * Kyle Swenson <kswenson@cradlepoint.com> |
| 8 | * |
| 9 | * Copyright 2019 Cradlepoint Technology, Inc. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 |
| 13 | * as published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | */ |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/of_irq.h> |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/idr.h> |
| 29 | #include <linux/device.h> |
| 30 | #include <linux/i2c.h> |
| 31 | #include <linux/workqueue.h> |
| 32 | #include <linux/timer.h> |
| 33 | #include <linux/gpio.h> |
| 34 | #include "ltc4266-plat.h" |
| 35 | |