SYNOPSIS
struct drm_bridge {
struct drm_device * dev;
struct drm_encoder * encoder;
struct drm_bridge * next;
#ifdef CONFIG_OF
struct device_node * of_node;
#endif
struct list_head list;
const struct drm_bridge_funcs * funcs;
void * driver_private;
};
MEMBERS
dev
- DRM device this bridge belongs to
encoder
- encoder to which this bridge is connected
next
- the next bridge in the encoder chain
of_node
- device node pointer to the bridge
list
- to keep track of all added bridges
funcs
- control functions
driver_private
- pointer to the bridge driver's internal context
AUTHORS
Jesse Barnes <[email protected]>
Intel Corporation,
- Initial version
Laurent Pinchart <[email protected]>
Ideas on board SPRL,
- Driver internals
Daniel Vetter <[email protected]>
Intel Corporation,
- Contributions all over the place
Lukas Wunner <[email protected]>
- vga_switcheroo documentation
COPYRIGHT