Skip to content

Commit 0627d75

Browse files
committed
Merge series "regulator: Introduce UniPhier NX1 SoC support" from Kunihiko Hayashi <[email protected]>:
This series includes the patches to add basic support for new UniPhier NX1 SoC. NX1 SoC also has the same kinds of controls as the other UniPhier SoCs. Kunihiko Hayashi (2): dt-bindings: regulator: uniphier: Add binding for NX1 SoC regulator: uniphier: Add USB-VBUS compatible string for NX1 SoC .../devicetree/bindings/regulator/socionext,uniphier-regulator.yaml | 1 + drivers/regulator/uniphier-regulator.c | 4 ++++ 2 files changed, 5 insertions(+) -- 2.7.4
2 parents 6aed787 + 4c1ef56 commit 0627d75

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Documentation/devicetree/bindings/regulator/socionext,uniphier-regulator.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ properties:
2727
- socionext,uniphier-pxs2-usb3-regulator
2828
- socionext,uniphier-ld20-usb3-regulator
2929
- socionext,uniphier-pxs3-usb3-regulator
30+
- socionext,uniphier-nx1-usb3-regulator
3031

3132
reg:
3233
maxItems: 1

drivers/regulator/uniphier-regulator.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,10 @@ static const struct of_device_id uniphier_regulator_match[] = {
199199
.compatible = "socionext,uniphier-pxs3-usb3-regulator",
200200
.data = &uniphier_pxs2_usb3_data,
201201
},
202+
{
203+
.compatible = "socionext,uniphier-nx1-usb3-regulator",
204+
.data = &uniphier_pxs2_usb3_data,
205+
},
202206
{ /* Sentinel */ },
203207
};
204208
MODULE_DEVICE_TABLE(of, uniphier_regulator_match);

0 commit comments

Comments
 (0)