1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __LTE_H 3 #define __LTE_H 4 5 #include <linux/types.h> 6 #include <linux/ioctl.h> 7 #include <linux/miscdevice.h> 8 9 struct lte_data { 10 struct device *dev; 11 struct gpio_desc *reset_gpio; 12 struct gpio_desc *power_gpio; 13 struct gpio_desc *vbat_gpio; 14 }; 15 16 #endif /* __LTE_H */ 17