Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-539.el9.x86_64/include/linux/mfd/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * Header file for device driver Hi6421 PMIC * * Copyright (c) 2013 Linaro Ltd. * Copyright (C) 2011 Hisilicon. * Copyright (c) 2020-2021 Huawei Technologies Co., Ltd * * Guodong Xu <guodong.xu@linaro.org> */ #ifndef __HISI_PMIC_H #define __HISI_PMIC_H #include <linux/irqdomain.h> #include <linux/regmap.h> struct hi6421_spmi_pmic { struct resource *res; struct device *dev; void __iomem *regs; spinlock_t lock; struct irq_domain *domain; int irq; int gpio; unsigned int *irqs; struct regmap *regmap; }; #endif /* __HISI_PMIC_H */