Fix function declaration

This commit is contained in:
Alan Hourihane 2008-02-05 10:11:01 +00:00
parent 7cc825f594
commit f2c706e247
2 changed files with 2 additions and 2 deletions

View file

@ -2299,7 +2299,7 @@ done:
return ret;
}
int drm_mode_output_update_edid_property(struct drm_output *output, unsigned char *edid)
int drm_mode_output_update_edid_property(struct drm_output *output, struct edid *edid)
{
struct drm_device *dev = output->dev;
int ret = 0;

View file

@ -592,7 +592,7 @@ extern int drm_mode_vrefresh(struct drm_display_mode *mode);
extern void drm_mode_set_crtcinfo(struct drm_display_mode *p,
int adjust_flags);
extern void drm_mode_output_list_update(struct drm_output *output);
extern int drm_mode_output_update_edid_property(struct drm_output *output, unsigned char *edid);
extern int drm_mode_output_update_edid_property(struct drm_output *output, struct edid *edid);
extern struct drm_display_mode *drm_crtc_mode_create(struct drm_device *dev);
extern bool drm_initial_config(struct drm_device *dev, bool cangrow);
extern void drm_framebuffer_set_object(struct drm_device *dev,