mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-29 20:50:15 +01:00
Fix function declaration
This commit is contained in:
parent
7cc825f594
commit
f2c706e247
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue