diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2011-12-20 00:06:46 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-12-20 10:05:06 +0000 |
commit | 22cd7c625837e520c94ffda7bc926396bbc4ba67 (patch) | |
tree | a331600b8a7f1e7030b05fdce21436478e48ab72 /include/drm | |
parent | 687a040038fb92c764adbb349ca132226677b417 (diff) | |
download | linux-22cd7c625837e520c94ffda7bc926396bbc4ba67.tar.gz linux-22cd7c625837e520c94ffda7bc926396bbc4ba67.tar.bz2 linux-22cd7c625837e520c94ffda7bc926396bbc4ba67.zip |
drm: plane: Make 'formats' parameter to drm_plane_init() const
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index dd557272eca7..42c89b201ffd 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -828,7 +828,7 @@ extern int drm_plane_init(struct drm_device *dev, struct drm_plane *plane, unsigned long possible_crtcs, const struct drm_plane_funcs *funcs, - uint32_t *formats, uint32_t format_count); + const uint32_t *formats, uint32_t format_count); extern void drm_plane_cleanup(struct drm_plane *plane); extern void drm_encoder_cleanup(struct drm_encoder *encoder); |