media: atomisp: fix inverted logic in buffers_needed()
[ Upstream commit e1921cd14640f0f4d1fad5eb8e448c58a536415d ]
When config.mode is IA_CSS_INPUT_MODE_BUFFERED_SENSOR, it rather needs
buffers. Fix it by inverting the return value.
Fixes: 3c0538fbad
("media: atomisp: get rid of most checks for ISP2401 version")
Signed-off-by: Tsuchiya Yuto <kitakar@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
fb370f6dc7
commit
08e43223fb
@@ -389,17 +389,17 @@ static bool buffers_needed(struct ia_css_pipe *pipe)
|
||||
{
|
||||
if (!IS_ISP2401) {
|
||||
if (pipe->stream->config.mode == IA_CSS_INPUT_MODE_BUFFERED_SENSOR)
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
if (pipe->stream->config.mode == IA_CSS_INPUT_MODE_BUFFERED_SENSOR ||
|
||||
pipe->stream->config.mode == IA_CSS_INPUT_MODE_TPG ||
|
||||
pipe->stream->config.mode == IA_CSS_INPUT_MODE_PRBS)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user