#ifndef _IMX_DRM_H_ #define _IMX_DRM_H_ struct device_node; struct drm_crtc; struct drm_connector; struct drm_device; struct drm_display_mode; struct drm_encoder; struct drm_fbdev_cma; struct drm_framebuffer; struct drm_plane; struct imx_drm_crtc; struct platform_device; struct imx_crtc_state { struct drm_crtc_state base; u32 bus_format; u32 bus_flags; int di_hsync_pin; int di_vsync_pin; };
static inline struct imx_crtc_state *to_imx_crtc_state(struct drm_crtc_state *s) { return container_of(s, struct imx_crtc_state, base); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Philipp Zabel | 23 | 92.00% | 1 | 50.00% |
Liu Ying | 2 | 8.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Sascha Hauer | 52 | 28.57% | 1 | 10.00% |
Philipp Zabel | 46 | 25.27% | 3 | 30.00% |
Russell King | 45 | 24.73% | 3 | 30.00% |
Liu Ying | 20 | 10.99% | 1 | 10.00% |
Lucas Stach | 19 | 10.44% | 2 | 20.00% |
Total | 182 | 100.00% | 10 | 100.00% |