projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c10496c
)
drm/meson: Fix an un-handled error path in 'meson_drv_bind_master()'
author
Christophe JAILLET
<
[email protected]
>
Mon, 12 Mar 2018 20:15:08 +0000
(21:15 +0100)
committer
Neil Armstrong
<
[email protected]
>
Tue, 13 Mar 2018 09:38:27 +0000
(10:38 +0100)
'drm_vblank_init()' can fail. So handle this (unlikely) error.
Fixes: bbbe775ec5b5 ("drm: Add support for Amlogic Meson Graphic Controller")
Signed-off-by: Christophe JAILLET <
[email protected]
>
Acked-by: Neil Armstrong <
[email protected]
>
Signed-off-by: Neil Armstrong <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/6cbf3d70ac3904489c7194c895225c4103aebb96.1520885192.git.christophe.jaillet@wanadoo.fr
drivers/gpu/drm/meson/meson_drv.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/meson/meson_drv.c
b/drivers/gpu/drm/meson/meson_drv.c
index f9ad0e960263fd6e112c9f42f88df611774fd5c5..02b0886debc0b936746071517290e022c8adc57e 100644
(file)
--- a/
drivers/gpu/drm/meson/meson_drv.c
+++ b/
drivers/gpu/drm/meson/meson_drv.c
@@
-222,7
+222,10
@@
static int meson_drv_bind_master(struct device *dev, bool has_components)
priv->vsync_irq = platform_get_irq(pdev, 0);
- drm_vblank_init(drm, 1);
+ ret = drm_vblank_init(drm, 1);
+ if (ret)
+ goto free_drm;
+
drm_mode_config_init(drm);
drm->mode_config.max_width = 3840;
drm->mode_config.max_height = 2160;