D | max8907-regulator.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * max8907-regulator.c -- support regulators in max8907 5 * Copyright (C) 2010 Gyungoh Yoo <jack.yoo@maxim-ic.com> 6 * Copyright (C) 2010-2012, NVIDIA CORPORATION. All rights reserved. 8 * Portions based on drivers/regulator/tps65910-regulator.c, 46 #define REG_LDO(ids, supply, base, min, max, step) \ argument 49 .supply_name = supply, \ 51 .n_voltages = ((max) - (min)) / (step) + 1, \ 63 #define REG_FIXED(ids, supply, voltage) \ argument 66 .supply_name = supply, \ [all …]
|