diff options
author | Biju Das <biju.das.jz@bp.renesas.com> | 2023-08-31 09:09:36 +0100 |
---|---|---|
committer | Douglas Anderson <dianders@chromium.org> | 2023-09-06 08:32:37 -0700 |
commit | d8dfccde2709de4327c3d62b50e5dc012f08836f (patch) | |
tree | b98917ba0c80b0e15b2736c070c9574c9d5cdd0b /include/drm/drm_bridge.h | |
parent | 39e0b96d61b6f5ad880d9953dc2b4c5b3ee145b3 (diff) | |
download | linux-d8dfccde2709de4327c3d62b50e5dc012f08836f.tar.gz linux-d8dfccde2709de4327c3d62b50e5dc012f08836f.tar.bz2 linux-d8dfccde2709de4327c3d62b50e5dc012f08836f.zip |
drm/bridge: Drop conditionals around of_node pointers
This patch is based on commit c9e358dfc4a8 ("driver-core: remove
conditionals around devicetree pointers").
Having conditional around the of_node pointer of the drm_bridge
structure turns out to make driver code use ugly #ifdef blocks. Drop the
conditionals to simplify drivers. While this slightly increases the size
of struct drm_bridge on non-OF system, the number of bridges used today
and foreseen tomorrow on those systems is very low, so this shouldn't be
an issue.
So drop #if conditionals by adding struct device_node forward declaration.
Suggested-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230831080938.47454-3-biju.das.jz@bp.renesas.com
Diffstat (limited to 'include/drm/drm_bridge.h')
-rw-r--r-- | include/drm/drm_bridge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drm/drm_bridge.h b/include/drm/drm_bridge.h index 2dd94224f17e..cfb7dcdb66c4 100644 --- a/include/drm/drm_bridge.h +++ b/include/drm/drm_bridge.h @@ -32,6 +32,8 @@ #include <drm/drm_mode_object.h> #include <drm/drm_modes.h> +struct device_node; + struct drm_bridge; struct drm_bridge_timings; struct drm_connector; @@ -716,10 +718,8 @@ struct drm_bridge { struct drm_encoder *encoder; /** @chain_node: used to form a bridge chain */ struct list_head chain_node; -#ifdef CONFIG_OF /** @of_node: device node pointer to the bridge */ struct device_node *of_node; -#endif /** @list: to keep track of all added bridges */ struct list_head list; /** |