diff options
| author | Thomas Zimmermann <[email protected]> | 2022-10-06 09:53:44 +0000 |
|---|---|---|
| committer | Thomas Zimmermann <[email protected]> | 2022-10-07 11:45:47 +0000 |
| commit | 0862cfd3e22f3f936927f2f7381c2519ba034c6e (patch) | |
| tree | 6e12b4b06f8dae908894372243ab57868adf526b /drivers/gpu/drm/udl/udl_connector.h | |
| parent | drm/udl: Various improvements to the connector (diff) | |
| download | kernel-0862cfd3e22f3f936927f2f7381c2519ba034c6e.tar.gz kernel-0862cfd3e22f3f936927f2f7381c2519ba034c6e.zip | |
drm/udl: Move connector to modesetting code
Move the connector next to the rest of the modesetting code. No
functional changes.
Signed-off-by: Thomas Zimmermann <[email protected]>
Reviewed-by: Javier Martinez Canillas <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/udl/udl_connector.h')
| -rw-r--r-- | drivers/gpu/drm/udl/udl_connector.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/drivers/gpu/drm/udl/udl_connector.h b/drivers/gpu/drm/udl/udl_connector.h deleted file mode 100644 index 74ad68fd3cc9..000000000000 --- a/drivers/gpu/drm/udl/udl_connector.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef __UDL_CONNECTOR_H__ -#define __UDL_CONNECTOR_H__ - -#include <linux/container_of.h> - -#include <drm/drm_connector.h> - -struct edid; - -struct udl_connector { - struct drm_connector connector; - /* last udl_detect edid */ - struct edid *edid; -}; - -static inline struct udl_connector *to_udl_connector(struct drm_connector *connector) -{ - return container_of(connector, struct udl_connector, connector); -} - -#endif //__UDL_CONNECTOR_H__ |
