mirror of https://gitee.com/openkylin/linux.git
staging: atomisp: replace "&isp->asd[i]" with "asd" in __get_asd_from_port()
The address of isp->asd[i] is already assigned to local "asd" variable. "&isp->asd[i]" would be replaced with just "asd". Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
287666dfe8
commit
7eb21a8818
|
@ -536,9 +536,9 @@ __get_asd_from_port(struct atomisp_device *isp, mipi_port_ID_t port)
|
|||
struct camera_mipi_info *mipi_info =
|
||||
atomisp_to_sensor_mipi_info(
|
||||
isp->inputs[asd->input_curr].camera);
|
||||
if (isp->asd[i].streaming == ATOMISP_DEVICE_STREAMING_ENABLED &&
|
||||
if (asd->streaming == ATOMISP_DEVICE_STREAMING_ENABLED &&
|
||||
__get_mipi_port(isp, mipi_info->port) == port) {
|
||||
return &isp->asd[i];
|
||||
return asd;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue