Commit 92b2bc49 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: use different dfs failed messages

There are several parts of the driver that could produce
a "dfs failed!" message. Change the texts, in order to help
identifying from where they're coming.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 469a7306
...@@ -1407,10 +1407,10 @@ static void __atomisp_css_recover(struct atomisp_device *isp, bool isp_timeout) ...@@ -1407,10 +1407,10 @@ static void __atomisp_css_recover(struct atomisp_device *isp, bool isp_timeout)
atomisp_css_valid_sof(isp)); atomisp_css_valid_sof(isp));
if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_AUTO, true) < 0) if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_AUTO, true) < 0)
dev_dbg(isp->dev, "dfs failed!\n"); dev_dbg(isp->dev, "DFS auto failed while recovering!\n");
} else { } else {
if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_MAX, true) < 0) if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_MAX, true) < 0)
dev_dbg(isp->dev, "dfs failed!\n"); dev_dbg(isp->dev, "DFS max failed while recovering!\n");
} }
for (i = 0; i < isp->num_of_streams; i++) { for (i = 0; i < isp->num_of_streams; i++) {
......
...@@ -1810,15 +1810,15 @@ static int atomisp_streamon(struct file *file, void *fh, ...@@ -1810,15 +1810,15 @@ static int atomisp_streamon(struct file *file, void *fh,
if (atomisp_streaming_count(isp) > 1) { if (atomisp_streaming_count(isp) > 1) {
if (atomisp_freq_scaling(isp, if (atomisp_freq_scaling(isp,
ATOMISP_DFS_MODE_MAX, false) < 0) ATOMISP_DFS_MODE_MAX, false) < 0)
dev_dbg(isp->dev, "dfs failed!\n"); dev_dbg(isp->dev, "DFS max mode failed!\n");
} else { } else {
if (atomisp_freq_scaling(isp, if (atomisp_freq_scaling(isp,
ATOMISP_DFS_MODE_AUTO, false) < 0) ATOMISP_DFS_MODE_AUTO, false) < 0)
dev_dbg(isp->dev, "dfs failed!\n"); dev_dbg(isp->dev, "DFS auto mode failed!\n");
} }
} else { } else {
if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_MAX, false) < 0) if (atomisp_freq_scaling(isp, ATOMISP_DFS_MODE_MAX, false) < 0)
dev_dbg(isp->dev, "dfs failed!\n"); dev_dbg(isp->dev, "DFS max mode failed!\n");
} }
if (asd->depth_mode->val && atomisp_streaming_count(isp) == if (asd->depth_mode->val && atomisp_streaming_count(isp) ==
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment