diff options
author | Adam Jackson <ajax@redhat.com> | 2010-08-03 14:38:16 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-08-09 20:46:56 -0400 |
commit | fb439640145df0d3af7eacb83a19d8eb0a24002a (patch) | |
tree | 99bac1a4955d6732e311f415223dff61b7759d3e /include/drm/drm_crtc.h | |
parent | bf79cb914dbfe848add8bb76cbb8ff89110d29ff (diff) |
drm: Remove unused fields from drm_display_info
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 93a1a31b9c2d..606eb93d7db0 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -190,49 +190,16 @@ enum subpixel_order { | |||
190 | */ | 190 | */ |
191 | struct drm_display_info { | 191 | struct drm_display_info { |
192 | char name[DRM_DISPLAY_INFO_LEN]; | 192 | char name[DRM_DISPLAY_INFO_LEN]; |
193 | /* Input info */ | 193 | |
194 | bool serration_vsync; | ||
195 | bool sync_on_green; | ||
196 | bool composite_sync; | ||
197 | bool separate_syncs; | ||
198 | bool blank_to_black; | ||
199 | unsigned char video_level; | ||
200 | bool digital; | ||
201 | /* Physical size */ | 194 | /* Physical size */ |
202 | unsigned int width_mm; | 195 | unsigned int width_mm; |
203 | unsigned int height_mm; | 196 | unsigned int height_mm; |
204 | 197 | ||
205 | /* Display parameters */ | ||
206 | unsigned char gamma; /* FIXME: storage format */ | ||
207 | bool gtf_supported; | ||
208 | bool standard_color; | ||
209 | enum { | ||
210 | monochrome = 0, | ||
211 | rgb, | ||
212 | other, | ||
213 | unknown, | ||
214 | } display_type; | ||
215 | bool active_off_supported; | ||
216 | bool suspend_supported; | ||
217 | bool standby_supported; | ||
218 | |||
219 | /* Color info FIXME: storage format */ | ||
220 | unsigned short redx, redy; | ||
221 | unsigned short greenx, greeny; | ||
222 | unsigned short bluex, bluey; | ||
223 | unsigned short whitex, whitey; | ||
224 | |||
225 | /* Clock limits FIXME: storage format */ | 198 | /* Clock limits FIXME: storage format */ |
226 | unsigned int min_vfreq, max_vfreq; | 199 | unsigned int min_vfreq, max_vfreq; |
227 | unsigned int min_hfreq, max_hfreq; | 200 | unsigned int min_hfreq, max_hfreq; |
228 | unsigned int pixel_clock; | 201 | unsigned int pixel_clock; |
229 | 202 | ||
230 | /* White point indices FIXME: storage format */ | ||
231 | unsigned int wpx1, wpy1; | ||
232 | unsigned int wpgamma1; | ||
233 | unsigned int wpx2, wpy2; | ||
234 | unsigned int wpgamma2; | ||
235 | |||
236 | enum subpixel_order subpixel_order; | 203 | enum subpixel_order subpixel_order; |
237 | 204 | ||
238 | char *raw_edid; /* if any */ | 205 | char *raw_edid; /* if any */ |