Skip to content

Commit a1524d9

Browse files
0xB0Dgregkh
authored andcommitted
media: qcom: camss: Remove extraneous -supply postfix on supply names
commit c26e8dc upstream. The -supply postfix is wrong but wasn't noticed on the CRD devices or indeed the Dell devices, however on Lenovo devices the error comes up. Fixes: 1830cf0 ("media: qcom: camss: Add x1e80100 specific support") Cc: stable@vger.kernel.org Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> [bod: reworded commit log per Konrad's feedback] Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 423d163 commit a1524d9

File tree

1 file changed

+8
-8
lines changed
  • drivers/media/platform/qcom/camss

1 file changed

+8
-8
lines changed

drivers/media/platform/qcom/camss/camss.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2486,8 +2486,8 @@ static const struct resources_icc icc_res_sm8550[] = {
24862486
static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
24872487
/* CSIPHY0 */
24882488
{
2489-
.regulators = { "vdd-csiphy-0p8-supply",
2490-
"vdd-csiphy-1p2-supply" },
2489+
.regulators = { "vdd-csiphy-0p8",
2490+
"vdd-csiphy-1p2" },
24912491
.clock = { "csiphy0", "csiphy0_timer" },
24922492
.clock_rate = { { 300000000, 400000000, 480000000 },
24932493
{ 266666667, 400000000 } },
@@ -2501,8 +2501,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
25012501
},
25022502
/* CSIPHY1 */
25032503
{
2504-
.regulators = { "vdd-csiphy-0p8-supply",
2505-
"vdd-csiphy-1p2-supply" },
2504+
.regulators = { "vdd-csiphy-0p8",
2505+
"vdd-csiphy-1p2" },
25062506
.clock = { "csiphy1", "csiphy1_timer" },
25072507
.clock_rate = { { 300000000, 400000000, 480000000 },
25082508
{ 266666667, 400000000 } },
@@ -2516,8 +2516,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
25162516
},
25172517
/* CSIPHY2 */
25182518
{
2519-
.regulators = { "vdd-csiphy-0p8-supply",
2520-
"vdd-csiphy-1p2-supply" },
2519+
.regulators = { "vdd-csiphy-0p8",
2520+
"vdd-csiphy-1p2" },
25212521
.clock = { "csiphy2", "csiphy2_timer" },
25222522
.clock_rate = { { 300000000, 400000000, 480000000 },
25232523
{ 266666667, 400000000 } },
@@ -2531,8 +2531,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
25312531
},
25322532
/* CSIPHY4 */
25332533
{
2534-
.regulators = { "vdd-csiphy-0p8-supply",
2535-
"vdd-csiphy-1p2-supply" },
2534+
.regulators = { "vdd-csiphy-0p8",
2535+
"vdd-csiphy-1p2" },
25362536
.clock = { "csiphy4", "csiphy4_timer" },
25372537
.clock_rate = { { 300000000, 400000000, 480000000 },
25382538
{ 266666667, 400000000 } },

0 commit comments

Comments
 (0)