Files
android_kernel_xiaomi_sm8450/drivers/gpu/drm/radeon
Gabriel Krisman Bertazi e4563f6ba7 drm: Rely on mode_config data for fb_helper initialization
Instead of receiving the num_crts as a parameter, we can read it
directly from the mode_config structure.  I audited the drivers that
invoke this helper and I believe all of them initialize the mode_config
struct accordingly, prior to calling the fb_helper.

I used the following coccinelle hack to make this transformation, except
for the function headers and comment updates.  The first and second
rules are split because I couldn't find a way to remove the unused
temporary variables at the same time I removed the parameter.

// <smpl>
@r@
expression A,B,D,E;
identifier C;
@@
(
- drm_fb_helper_init(A,B,C,D)
+ drm_fb_helper_init(A,B,D)
|
- drm_fbdev_cma_init_with_funcs(A,B,C,D,E)
+ drm_fbdev_cma_init_with_funcs(A,B,D,E)
|
- drm_fbdev_cma_init(A,B,C,D)
+ drm_fbdev_cma_init(A,B,D)
)

@@
expression A,B,C,D,E;
@@
(
- drm_fb_helper_init(A,B,C,D)
+ drm_fb_helper_init(A,B,D)
|
- drm_fbdev_cma_init_with_funcs(A,B,C,D,E)
+ drm_fbdev_cma_init_with_funcs(A,B,D,E)
|
- drm_fbdev_cma_init(A,B,C,D)
+ drm_fbdev_cma_init(A,B,D)
)

@@
identifier r.C;
type T;
expression V;
@@
- T C;
<...
when != C
- C = V;
...>
// </smpl>

Changes since v1:
 - Rebased on top of the tip of drm-misc-next.
 - Remove mention to sti since a proper fix got merged.

Suggested-by: Daniel Vetter <daniel.vetter@intel.com>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170202162640.27261-1-krisman@collabora.co.uk
2017-02-02 19:12:00 +01:00
..
2016-03-16 18:08:06 -04:00
2016-12-15 14:55:34 +02:00
2015-05-26 15:09:03 +02:00
2016-03-16 18:08:06 -04:00
2015-10-21 11:35:11 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2015-12-02 12:45:54 -05:00
2016-05-16 10:25:13 -04:00
2015-12-02 12:45:54 -05:00
2016-03-16 18:08:06 -04:00
2016-12-15 14:55:34 +02:00
2014-03-06 16:46:56 -05:00
2015-10-21 11:35:11 -04:00
2016-03-16 18:08:06 -04:00
2015-11-30 14:44:34 -05:00
2017-01-26 10:45:14 +01:00
2016-12-15 14:55:34 +02:00
2015-12-02 12:45:54 -05:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2017-01-27 12:20:40 -05:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00
2016-03-16 18:08:06 -04:00