|
@@ -44,13 +44,11 @@ enum atmel_hlcdc_connector_rgb_mode {
|
|
* @connector: DRM connector
|
|
* @connector: DRM connector
|
|
* @encoder: DRM encoder
|
|
* @encoder: DRM encoder
|
|
* @dc: pointer to the atmel_hlcdc_dc structure
|
|
* @dc: pointer to the atmel_hlcdc_dc structure
|
|
- * @dpms: current DPMS mode
|
|
|
|
*/
|
|
*/
|
|
struct atmel_hlcdc_rgb_output {
|
|
struct atmel_hlcdc_rgb_output {
|
|
struct drm_connector connector;
|
|
struct drm_connector connector;
|
|
struct drm_encoder encoder;
|
|
struct drm_encoder encoder;
|
|
struct atmel_hlcdc_dc *dc;
|
|
struct atmel_hlcdc_dc *dc;
|
|
- int dpms;
|
|
|
|
};
|
|
};
|
|
|
|
|
|
static inline struct atmel_hlcdc_rgb_output *
|
|
static inline struct atmel_hlcdc_rgb_output *
|
|
@@ -104,14 +102,6 @@ static void atmel_hlcdc_panel_encoder_disable(struct drm_encoder *encoder)
|
|
drm_panel_disable(panel->panel);
|
|
drm_panel_disable(panel->panel);
|
|
}
|
|
}
|
|
|
|
|
|
-static bool
|
|
|
|
-atmel_hlcdc_panel_encoder_mode_fixup(struct drm_encoder *encoder,
|
|
|
|
- const struct drm_display_mode *mode,
|
|
|
|
- struct drm_display_mode *adjusted)
|
|
|
|
-{
|
|
|
|
- return true;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static void
|
|
static void
|
|
atmel_hlcdc_rgb_encoder_mode_set(struct drm_encoder *encoder,
|
|
atmel_hlcdc_rgb_encoder_mode_set(struct drm_encoder *encoder,
|
|
struct drm_display_mode *mode,
|
|
struct drm_display_mode *mode,
|
|
@@ -147,7 +137,6 @@ atmel_hlcdc_rgb_encoder_mode_set(struct drm_encoder *encoder,
|
|
}
|
|
}
|
|
|
|
|
|
static const struct drm_encoder_helper_funcs atmel_hlcdc_panel_encoder_helper_funcs = {
|
|
static const struct drm_encoder_helper_funcs atmel_hlcdc_panel_encoder_helper_funcs = {
|
|
- .mode_fixup = atmel_hlcdc_panel_encoder_mode_fixup,
|
|
|
|
.mode_set = atmel_hlcdc_rgb_encoder_mode_set,
|
|
.mode_set = atmel_hlcdc_rgb_encoder_mode_set,
|
|
.disable = atmel_hlcdc_panel_encoder_disable,
|
|
.disable = atmel_hlcdc_panel_encoder_disable,
|
|
.enable = atmel_hlcdc_panel_encoder_enable,
|
|
.enable = atmel_hlcdc_panel_encoder_enable,
|
|
@@ -248,7 +237,6 @@ static int atmel_hlcdc_create_panel_output(struct drm_device *dev,
|
|
if (!panel)
|
|
if (!panel)
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
|
|
|
|
- panel->base.dpms = DRM_MODE_DPMS_OFF;
|
|
|
|
|
|
|
|
panel->base.dc = dc;
|
|
panel->base.dc = dc;
|
|
|
|
|