Re: [Intel-gfx] [PATCH 1/9] drm: Remove unused arg from drm_fb_helper_init

2020-03-02 Thread Alex Deucher
On Mon, Mar 2, 2020 at 8:08 AM Pankaj Bharadiya wrote: > > The max connector argument for drm_fb_helper_init() isn't used anymore > hence remove it. > > All the drm_fb_helper_init() calls are modified with below sementic > patch. > > @@ > expression E1, E2, E3; > @@ > - drm_fb_helper_init(E1,E2,

Re: [Intel-gfx] [PATCH 1/9] drm: Remove unused arg from drm_fb_helper_init

2020-03-02 Thread Thomas Zimmermann
Hi Am 02.03.20 um 13:56 schrieb Pankaj Bharadiya: > The max connector argument for drm_fb_helper_init() isn't used anymore > hence remove it. > > All the drm_fb_helper_init() calls are modified with below sementic > patch. > > @@ > expression E1, E2, E3; > @@ > - drm_fb_helper_init(E1,E2, E3) >

[Intel-gfx] [PATCH 1/9] drm: Remove unused arg from drm_fb_helper_init

2020-03-02 Thread Pankaj Bharadiya
The max connector argument for drm_fb_helper_init() isn't used anymore hence remove it. All the drm_fb_helper_init() calls are modified with below sementic patch. @@ expression E1, E2, E3; @@ - drm_fb_helper_init(E1,E2, E3) + drm_fb_helper_init(E1,E2) Signed-off-by: Pankaj Bharadiya --- driv