| /* |
| * ltc4266-qcom.c |
| * |
| * LTC4266 Qualcomm specific bits |
| * |
| * Author: Cradlepoint Technology, Inc. <source@cradlepoint.com> |
| * Kyle Swenson <kswenson@cradlepoint.com> |
| * |
| * Copyright 2019 Cradlepoint Technology, Inc. |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 |
| * as published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| */ |
| #include <linux/kernel.h> |
| #include <linux/module.h> |
| #include <linux/interrupt.h> |
| #include <linux/platform_device.h> |
| #include <linux/of_irq.h> |
| #include <linux/fs.h> |
| #include <linux/errno.h> |
| #include <linux/idr.h> |
| #include <linux/device.h> |
| #include <linux/i2c.h> |
| #include <linux/workqueue.h> |
| #include <linux/timer.h> |
| #include <linux/gpio.h> |
| #include "ltc4266-plat.h" |
| |