mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 15:43:08 -04:00
of_drm_find_bridge() is deprecated. Move to its replacement of_drm_find_and_get_bridge() which gets a bridge reference, and ensure it is put when done. We need to handle the two cases: when a panel_bridge is added and when it isn't. So: * in the 'else' case a panel_bridge is not added and bridge is found: use of_drm_find_and_get_bridge() to get a reference to the found bridge * in the 'then' case a panel_bridge is found using a devm function which already takes a refcount and will put it on removal, but we need to take another so the following code in this function always get exactly one reference that it needs to put In order to put the reference, add the needed drm_bridge_put() calls in the existing cleanup function. Reviewed-by: Linus Walleij <linusw@kernel.org> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com> Link: https://patch.msgid.link/20260409-drm-bridge-alloc-getput-drm_of_find_bridge-4-v5-2-d7381c07788a@bootlin.com Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
31 lines
700 B
C
31 lines
700 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* R-Car Display Unit Encoder
|
|
*
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
|
*
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
*/
|
|
|
|
#ifndef __RCAR_DU_ENCODER_H__
|
|
#define __RCAR_DU_ENCODER_H__
|
|
|
|
#include <drm/drm_encoder.h>
|
|
|
|
struct rcar_du_device;
|
|
|
|
struct rcar_du_encoder {
|
|
struct drm_encoder base;
|
|
enum rcar_du_output output;
|
|
};
|
|
|
|
#define to_rcar_encoder(e) \
|
|
container_of(e, struct rcar_du_encoder, base)
|
|
|
|
int rcar_du_encoder_init(struct rcar_du_device *rcdu,
|
|
enum rcar_du_output output,
|
|
struct device_node *enc_node);
|
|
void rcar_du_encoder_cleanup(struct rcar_du_device *rcdu);
|
|
|
|
#endif /* __RCAR_DU_ENCODER_H__ */
|