/usr/src/linux-headers-5.15.0-190/include/linux/regulator
NameSizeModeActions
act8865.h14810644editdlrm
arizona-ldo1.h3320644editdlrm
arizona-micsupp.h3470644editdlrm
consumer.h199860644editdlrm
coupler.h35390644editdlrm
da9121.h9560644editdlrm
da9211.h7570644editdlrm
db8500-prcmu.h11590644editdlrm
driver.h296940644editdlrm
fan53555.h12300644editdlrm
fixed.h17430644editdlrm
gpio-regulator.h21760644editdlrm
lp872x.h19320644editdlrm
lp3971.h7630644editdlrm
lp3972.h6610644editdlrm
machine.h98730644editdlrm
max1586.h15200644editdlrm
max8649.h8300644editdlrm
max8660.h9660644editdlrm
max8952.h22940644editdlrm
max8973-regulator.h25770644editdlrm
mt6311.h4390644editdlrm
mt6315-regulator.h11020644editdlrm
mt6323-regulator.h8300644editdlrm
mt6358-regulator.h10510644editdlrm
mt6359-regulator.h11620644editdlrm
mt6380-regulator.h4750644editdlrm
mt6397-regulator.h8080644editdlrm
of_regulator.h11190644editdlrm
pca9450.h59430644editdlrm
pfuze100.h16580644editdlrm
tps6507x.h5120644editdlrm
tps51632-regulator.h9780644editdlrm
tps62360.h12220644editdlrm
userspace-consumer.h6750644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/include/linux/regulator/lp3971.h (763B)
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * National Semiconductors LP3971 PMIC chip client interface * * Copyright (C) 2009 Samsung Electronics * Author: Marek Szyprowski * * Based on wm8400.h */ #ifndef __LINUX_REGULATOR_LP3971_H #define __LINUX_REGULATOR_LP3971_H #include #define LP3971_LDO1 0 #define LP3971_LDO2 1 #define LP3971_LDO3 2 #define LP3971_LDO4 3 #define LP3971_LDO5 4 #define LP3971_DCDC1 5 #define LP3971_DCDC2 6 #define LP3971_DCDC3 7 #define LP3971_NUM_REGULATORS 8 struct lp3971_regulator_subdev { int id; struct regulator_init_data *initdata; }; struct lp3971_platform_data { int num_regulators; struct lp3971_regulator_subdev *regulators; }; #endif