* [PATCH] media: qcom: camss: Remove extraneous -supply postfix on supply names
@ 2025-06-26 1:24 Bryan O'Donoghue
2025-06-27 0:43 ` Konrad Dybcio
0 siblings, 1 reply; 3+ messages in thread
From: Bryan O'Donoghue @ 2025-06-26 1:24 UTC (permalink / raw)
To: bryan.odonoghue
Cc: mchehab, hverkuil, linux-media, linux-arm-msm, linux-kernel,
vladimir.zapolskiy
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: 1830cf0f56c3 ("media: qcom: camss: Add x1e80100 specific support")
Cc: stable@vger.kernel.org
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
drivers/media/platform/qcom/camss/camss.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/media/platform/qcom/camss/camss.c b/drivers/media/platform/qcom/camss/camss.c
index 06f42875702f0..ce79cd8d32787 100644
--- a/drivers/media/platform/qcom/camss/camss.c
+++ b/drivers/media/platform/qcom/camss/camss.c
@@ -2486,8 +2486,8 @@ static const struct resources_icc icc_res_sm8550[] = {
static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
/* CSIPHY0 */
{
- .regulators = { "vdd-csiphy-0p8-supply",
- "vdd-csiphy-1p2-supply" },
+ .regulators = { "vdd-csiphy-0p8",
+ "vdd-csiphy-1p2" },
.clock = { "csiphy0", "csiphy0_timer" },
.clock_rate = { { 300000000, 400000000, 480000000 },
{ 266666667, 400000000 } },
@@ -2501,8 +2501,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
},
/* CSIPHY1 */
{
- .regulators = { "vdd-csiphy-0p8-supply",
- "vdd-csiphy-1p2-supply" },
+ .regulators = { "vdd-csiphy-0p8",
+ "vdd-csiphy-1p2" },
.clock = { "csiphy1", "csiphy1_timer" },
.clock_rate = { { 300000000, 400000000, 480000000 },
{ 266666667, 400000000 } },
@@ -2516,8 +2516,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
},
/* CSIPHY2 */
{
- .regulators = { "vdd-csiphy-0p8-supply",
- "vdd-csiphy-1p2-supply" },
+ .regulators = { "vdd-csiphy-0p8",
+ "vdd-csiphy-1p2" },
.clock = { "csiphy2", "csiphy2_timer" },
.clock_rate = { { 300000000, 400000000, 480000000 },
{ 266666667, 400000000 } },
@@ -2531,8 +2531,8 @@ static const struct camss_subdev_resources csiphy_res_x1e80100[] = {
},
/* CSIPHY4 */
{
- .regulators = { "vdd-csiphy-0p8-supply",
- "vdd-csiphy-1p2-supply" },
+ .regulators = { "vdd-csiphy-0p8",
+ "vdd-csiphy-1p2" },
.clock = { "csiphy4", "csiphy4_timer" },
.clock_rate = { { 300000000, 400000000, 480000000 },
{ 266666667, 400000000 } },
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] media: qcom: camss: Remove extraneous -supply postfix on supply names
2025-06-26 1:24 [PATCH] media: qcom: camss: Remove extraneous -supply postfix on supply names Bryan O'Donoghue
@ 2025-06-27 0:43 ` Konrad Dybcio
2025-06-27 1:05 ` Bryan O'Donoghue
0 siblings, 1 reply; 3+ messages in thread
From: Konrad Dybcio @ 2025-06-27 0:43 UTC (permalink / raw)
To: Bryan O'Donoghue
Cc: mchehab, hverkuil, linux-media, linux-arm-msm, linux-kernel,
vladimir.zapolskiy
On 6/26/25 3:24 AM, Bryan O'Donoghue wrote:
> 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.
Please give the commit message another shot, perhaps with "PM" in the
commit date above ;)
For the code:
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] media: qcom: camss: Remove extraneous -supply postfix on supply names
2025-06-27 0:43 ` Konrad Dybcio
@ 2025-06-27 1:05 ` Bryan O'Donoghue
0 siblings, 0 replies; 3+ messages in thread
From: Bryan O'Donoghue @ 2025-06-27 1:05 UTC (permalink / raw)
To: Konrad Dybcio
Cc: mchehab, hverkuil, linux-media, linux-arm-msm, linux-kernel,
vladimir.zapolskiy
On 27/06/2025 01:43, Konrad Dybcio wrote:
> On 6/26/25 3:24 AM, Bryan O'Donoghue wrote:
>> 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.
>
> Please give the commit message another shot, perhaps with "PM" in the
> commit date above ;)
On 27/06/2025 01:43, Konrad Dybcio wrote:
lol
>
> For the code:
>
> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> Konrad
thx for RB
I'll translate my commit log to English after my suspend/resume cycle.
---
bod
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-27 1:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-26 1:24 [PATCH] media: qcom: camss: Remove extraneous -supply postfix on supply names Bryan O'Donoghue
2025-06-27 0:43 ` Konrad Dybcio
2025-06-27 1:05 ` Bryan O'Donoghue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).