Re: [Intel-gfx] [PATCH 2/2] drm/i915/fbc: s/false/0/

2022-04-14 Thread Navare, Manasi
On Wed, Apr 13, 2022 at 06:28:52PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > intel_fbc_check_plane() is supposed to an int, not a boolean. > So replace the bogus 'return false's with the correct 'return 0's. > These were accidental copy-paste mistakes when the code got moved > into

[Intel-gfx] [PATCH 2/2] drm/i915/fbc: s/false/0/

2022-04-13 Thread Ville Syrjala
From: Ville Syrjälä intel_fbc_check_plane() is supposed to an int, not a boolean. So replace the bogus 'return false's with the correct 'return 0's. These were accidental copy-paste mistakes when the code got moved into intel_fbc_check_plane() from somewhere else tht did return a boolean. No