diff mbox series

regulator: set of_node for qcom vbus regulator

Message ID 20200818160649.19585-1-jonathan@marek.ca
State Accepted
Commit 66c3b96a7bd042427d2e0eaa8704536828f8235f
Headers show
Series regulator: set of_node for qcom vbus regulator | expand

Commit Message

Jonathan Marek Aug. 18, 2020, 4:06 p.m. UTC
This allows the regulator to be found by devm_regulator_get().

Fixes: 4fe66d5a62fb ("regulator: Add support for QCOM PMIC VBUS booster")
---
 drivers/regulator/qcom_usb_vbus-regulator.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Mark Brown Aug. 18, 2020, 4:21 p.m. UTC | #1
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.
Jonathan Marek Aug. 18, 2020, 4:25 p.m. UTC | #2
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 mbox series

Patch

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);