Re: [Intel-gfx] [PATCH xf86-video-intel] sna: Reprobe if kernel updates the connector mode list

2016-10-18 Thread Chris Wilson
On Mon, Oct 17, 2016 at 03:31:24PM -0700, Manasi Navare wrote:
> Output_check_status() should return a false if it detects
> that the connector mode list has changed so that sna_mode_discover
> can reprobe.
> 
> Fixes: eb01cc549d4d (sna: Refresh mode list if the kernel updates)
> 
> Signed-off-by: Manasi Navare 
> Cc: Chris Wilson 
> Cc: Ville Syrjala 

Pushed, thanks.
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [PATCH xf86-video-intel] sna: Reprobe if kernel updates the connector mode list

2016-10-17 Thread Manasi Navare
Output_check_status() should return a false if it detects
that the connector mode list has changed so that sna_mode_discover
can reprobe.

Fixes: eb01cc549d4d (sna: Refresh mode list if the kernel updates)

Signed-off-by: Manasi Navare 
Cc: Chris Wilson 
Cc: Ville Syrjala 
---
 src/sna/sna_display.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
index 15be27c..ea7e287 100644
--- a/src/sna/sna_display.c
+++ b/src/sna/sna_display.c
@@ -5191,7 +5191,7 @@ output_check_status(struct sna *sna, struct sna_output 
*output)
return true;
 
if (output->num_modes != compat_conn.conn.count_modes)
-   return true;
+   return false;
 
if (output->edid_len == 0)
return false;
-- 
1.9.1

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx