Message ID | 20200818160649.19585-1-jonathan@marek.ca |
---|---|
State | Accepted |
Commit | 66c3b96a7bd042427d2e0eaa8704536828f8235f |
Headers | show |
Series | regulator: set of_node for qcom vbus regulator | expand |
On Tue, Aug 18, 2020 at 12:06:49PM -0400, Jonathan Marek wrote: > This allows the regulator to be found by devm_regulator_get(). > > Fixes: 4fe66d5a62fb ("regulator: Add support for QCOM PMIC VBUS booster") > --- You've not provided a Signed-off-by for this so I can't do anything with it. For details on what Signed-off-by means and why it's important please see Documentation/process/submitting-patches.rst.
On 8/18/20 12:21 PM, Mark Brown wrote: > On Tue, Aug 18, 2020 at 12:06:49PM -0400, Jonathan Marek wrote: >> This allows the regulator to be found by devm_regulator_get(). >> >> Fixes: 4fe66d5a62fb ("regulator: Add support for QCOM PMIC VBUS booster") >> --- > > You've not provided a Signed-off-by for this so I can't do anything with > it. For details on what Signed-off-by means and why it's important > please see Documentation/process/submitting-patches.rst. > Sorry, my mistake. Resent the patch with SOB added.
diff --git a/drivers/regulator/qcom_usb_vbus-regulator.c b/drivers/regulator/qcom_usb_vbus-regulator.c index 8ba947f3585f..457788b50572 100644 --- a/drivers/regulator/qcom_usb_vbus-regulator.c +++ b/drivers/regulator/qcom_usb_vbus-regulator.c @@ -63,6 +63,7 @@ static int qcom_usb_vbus_regulator_probe(struct platform_device *pdev) qcom_usb_vbus_rdesc.enable_mask = OTG_EN; config.dev = dev; config.init_data = init_data; + config.of_node = dev->of_node; config.regmap = regmap; rdev = devm_regulator_register(dev, &qcom_usb_vbus_rdesc, &config);