xf86-video-intel: 2 commits - src/i830.h src/i830_quirks.c

Keith Packard keithp at kemper.freedesktop.org
Mon Oct 8 13:10:51 PDT 2007


 src/i830.h        |    3 +++
 src/i830_quirks.c |    2 ++
 2 files changed, 5 insertions(+)

New commits:
diff-tree 5bbe9f09fda1238da04e6b584813d40fc646f49d (from 41dacf97ec1d4ba6f54057f4fcc7bb76033a454e)
Author: Keith Packard <keithp at koto.keithp.com>
Date:   Wed Oct 3 00:18:25 2007 -0700

    Include xf86mm.h if using XF86DRI_MM
    
    This header file doesn't appear to be getting automatically included for
    some reason.

diff --git a/src/i830.h b/src/i830.h
index a04f937..df95fb5 100644
--- a/src/i830.h
+++ b/src/i830.h
@@ -68,6 +68,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
 #ifdef XF86DRI
 #include "xf86drm.h"
+#ifdef XF86DRI_MM
+#include "xf86mm.h"
+#endif
 #include "sarea.h"
 #define _XF86DRI_SERVER_
 #include "dri.h"
diff-tree 41dacf97ec1d4ba6f54057f4fcc7bb76033a454e (from 9e770bf69edaa8944048049e11266dbe1ef145e5)
Author: Keith Packard <keithp at koto.keithp.com>
Date:   Wed Oct 3 00:17:41 2007 -0700

    Quirk for Samsung Q35 which has no TV output.

diff --git a/src/i830_quirks.c b/src/i830_quirks.c
index 8e4ec97..9ae250c 100644
--- a/src/i830_quirks.c
+++ b/src/i830_quirks.c
@@ -79,6 +79,8 @@ static i830_quirk i830_quirk_list[] = {
     /* Panasonic Toughbook CF-Y7 has no TV output */
     { PCI_CHIP_I965_GM, 0x10f7, 0x8338, quirk_ignore_tv },
     
+    /* Samsung Q35 has no TV output */
+    { PCI_CHIP_I945_GM, 0x144d, 0xc504, quirk_ignore_tv },
     { 0, 0, 0, NULL },
 };
 


More information about the xorg-commit mailing list