lkml.org 
[lkml]   [2022]   [Nov]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v1 1/4] media: ipu3-cio2: Don't dereference fwnode handle
From
Hi Andy, sorry for the delay

On 18/11/2022 18:56, Andy Shevchenko wrote:
> Use acpi_fwnode_handle() instead of dereferencing an fwnode handle directly,
> which is a better coding practice.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> drivers/media/pci/intel/ipu3/cio2-bridge.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/media/pci/intel/ipu3/cio2-bridge.c b/drivers/media/pci/intel/ipu3/cio2-bridge.c
> index df6c94da2f6a..18974a72e94a 100644
> --- a/drivers/media/pci/intel/ipu3/cio2-bridge.c
> +++ b/drivers/media/pci/intel/ipu3/cio2-bridge.c
> @@ -263,7 +263,7 @@ static int cio2_bridge_connect_sensor(const struct cio2_sensor_config *cfg,
> struct cio2_bridge *bridge,
> struct pci_dev *cio2)
> {
> - struct fwnode_handle *fwnode;
> + struct fwnode_handle *fwnode, *primary;
> struct cio2_sensor *sensor;
> struct acpi_device *adev;
> acpi_status status;
> @@ -322,7 +322,9 @@ static int cio2_bridge_connect_sensor(const struct cio2_sensor_config *cfg,
> }
>
> sensor->adev = acpi_dev_get(adev);
> - adev->fwnode.secondary = fwnode;
> +
> + primary = acpi_fwnode_handle(adev);
> + primary->secondary = fwnode;
>
> cio2_bridge_instantiate_vcm_i2c_client(sensor);
>


LGTM: Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>

\
 
 \ /
  Last update: 2022-11-21 11:02    [W:0.071 / U:1.208 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site