Lines Matching full:configuration
37 * @class Configuration
39 * Configuration changes that should be applied to a device or regulator rail.
42 * The most common configuration change is setting the output voltage for a
46 * The configuration changes are applied during the boot before regulators are
49 * The configuration changes are applied by executing one or more actions.
56 class Configuration class
60 Configuration() = delete;
61 Configuration(const Configuration&) = delete;
62 Configuration(Configuration&&) = delete;
63 Configuration& operator=(const Configuration&) = delete;
64 Configuration& operator=(Configuration&&) = delete;
65 ~Configuration() = default;
73 explicit Configuration(std::optional<double> volts, in Configuration() function in phosphor::power::regulators::Configuration