Re: [PATCH] drm/vc4: fix argument ordering in vc4_crtc_get_margins()

2021-04-29 Thread Maxime Ripard
On Wed, Apr 21, 2021 at 01:18:03PM +0300, Dan Carpenter wrote: > Cppcheck complains that the declaration doesn't match the function > definition. Obviously "left" should come before "right". The caller > and the function implementation are done this way, it's just the > declaration which is

[PATCH] drm/vc4: fix argument ordering in vc4_crtc_get_margins()

2021-04-21 Thread Dan Carpenter
Cppcheck complains that the declaration doesn't match the function definition. Obviously "left" should come before "right". The caller and the function implementation are done this way, it's just the declaration which is wrong so this doesn't affect runtime. Reported-by: kernel test robot