mirror of https://gitee.com/openkylin/linux.git
drm: rcar-du: lvds: Fix bridge_to_rcar_lvds
Using name "bridge" for macro bridge_to_rcar_lvds argument doesn't
work when the pointer name used by the caller is not "bridge".
Rename the argument to "b" to allow for any pointer name.
While at it, fix the connector_to_rcar_lvds macro similarly.
Fixes: c6a27fa41f
("drm: rcar-du: Convert LVDS encoder code to bridge driver")
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
[Fix connector_to_rcar_lvds]
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
This commit is contained in:
parent
dbbfaf5f26
commit
0b936e6122
|
@ -71,11 +71,11 @@ struct rcar_lvds {
|
|||
bool dual_link;
|
||||
};
|
||||
|
||||
#define bridge_to_rcar_lvds(bridge) \
|
||||
container_of(bridge, struct rcar_lvds, bridge)
|
||||
#define bridge_to_rcar_lvds(b) \
|
||||
container_of(b, struct rcar_lvds, bridge)
|
||||
|
||||
#define connector_to_rcar_lvds(connector) \
|
||||
container_of(connector, struct rcar_lvds, connector)
|
||||
#define connector_to_rcar_lvds(c) \
|
||||
container_of(c, struct rcar_lvds, connector)
|
||||
|
||||
static void rcar_lvds_write(struct rcar_lvds *lvds, u32 reg, u32 data)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue