Re: [RESEND PATCH] drm/managed: Simplify if condition

2024-07-03 Thread Thomas Zimmermann
Merged into drm-misc-next Am 01.07.24 um 21:56 schrieb Thorsten Blum: The if condition !A || A && B can be simplified to !A || B. Fixes the following Coccinelle/coccicheck warning reported by excluded_middle.cocci: WARNING !A || A && B is equivalent to !A || B Compile-tested only. Ac

Re: [RESEND PATCH] drm/managed: Simplify if condition

2024-07-02 Thread Dmitry Baryshkov
On Mon, Jul 01, 2024 at 09:56:08PM GMT, Thorsten Blum wrote: > The if condition !A || A && B can be simplified to !A || B. > > Fixes the following Coccinelle/coccicheck warning reported by > excluded_middle.cocci: > > WARNING !A || A && B is equivalent to !A || B > > Compile-tested only. >

[RESEND PATCH] drm/managed: Simplify if condition

2024-07-01 Thread Thorsten Blum
The if condition !A || A && B can be simplified to !A || B. Fixes the following Coccinelle/coccicheck warning reported by excluded_middle.cocci: WARNING !A || A && B is equivalent to !A || B Compile-tested only. Acked-by: Thomas Zimmermann Signed-off-by: Thorsten Blum --- drivers/gpu