mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 03:49:57 -04:00
drm/sti: fix typo issue in sti_mode_config_init
Assign width to width and height to height. Signed-off-by: Vincent Abriou <vincent.abriou@st.com>
This commit is contained in:
@@ -123,8 +123,8 @@ static void sti_mode_config_init(struct drm_device *dev)
|
||||
* this value would be used to check framebuffer size limitation
|
||||
* at drm_mode_addfb().
|
||||
*/
|
||||
dev->mode_config.max_width = STI_MAX_FB_HEIGHT;
|
||||
dev->mode_config.max_height = STI_MAX_FB_WIDTH;
|
||||
dev->mode_config.max_width = STI_MAX_FB_WIDTH;
|
||||
dev->mode_config.max_height = STI_MAX_FB_HEIGHT;
|
||||
|
||||
dev->mode_config.funcs = &sti_mode_config_funcs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user