<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>6aff4c26 - drm/gma500: Remove lid code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#6aff4c26</link>
        <description>drm/gma500: Remove lid codeDue to a change in the order of initialization, the lid timer gotstarted before proper setup was made. This resulted in a crash duringboot.The lid switch is handled by gma500 through a timer that periodicallypolls the opregion for changes. These types of ACPI events shouldn&apos;t behandled by the graphics driver so let&apos;s get rid of the lid code.  Thisfixes the crash during boot.Reported-by: Enrico Bartky &lt;enrico.bartky@gmail.com&gt;Fixes: 8f1aaccb04b7 (&quot;drm/gma500: Implement client-based fbdev emulation&quot;)Tested-by: Enrico Bartky &lt;enrico.bartky@gmail.com&gt;Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Reviewed-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240415112731.31841-1-patrik.r.jakobsson@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Mon, 15 Apr 2024 11:27:31 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b8bbbea1 - drm/gma500: Move fbdev code into separate source file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#b8bbbea1</link>
        <description>drm/gma500: Move fbdev code into separate source fileMove the fbdev emulation from framebuffer.c to fbdev.c. Only buildthe source code if the Kconfig symbol has been selected. Remaining inframebuffer.c is gma500&apos;s code for DRM framebuffers. No functionalchanges.v2:	* remove &apos;extern&apos; from function declaration (Patrik)	* declare empty init/fini functions as &apos;static inline&apos; (kernel	  test robot)	* rebase onto vm_flags_set()	* typo fixes in commit messageSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Acked-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230313151610.14367-3-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Mon, 13 Mar 2023 15:16:05 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>26499e05 - drm/gma500: Drop DRM_GMA3600 config option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#26499e05</link>
        <description>drm/gma500: Drop DRM_GMA3600 config optionWith support for the MID-related chips removed, only support fordesktop chips is left in the driver. So just build the completedriver if DRM_GMA500 has been selected. Anyone who wants to enablethe Poulsbo code would probably also want the Cedarview code.[Patrik: Fixed conflict due to Oaktrail not being dropped]Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210129095604.32423-4-tzimmermann@suse.de(cherry picked from commit 837f23bb4b6002fe2be5dd70de7735133e0f2f28)Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 29 Jan 2021 09:56:02 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>e1da8112 - drm/gma500: Remove Medfield support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#e1da8112</link>
        <description>drm/gma500: Remove Medfield supportMedfield is an outdated mobile platform with apparently no users left.Remove it from gma500.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210129095604.32423-2-tzimmermann@suse.de(cherry picked from commit b51035c200bd3423ae5b6b98b54735ef424dc746)Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 29 Jan 2021 09:56:00 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9dd55dfe - drm/gma500: Never wait for blits</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#9dd55dfe</link>
        <description>drm/gma500: Never wait for blitsBlits cannot happen anymore since we removed the 2d accel code. Stopchecking for a busy blitter and remove the remaining blitter code.Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Reviewed-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210201132617.1233-6-patrik.r.jakobsson@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Mon, 01 Feb 2021 13:26:17 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5c209d80 - drm/gma500: psb_spank() doesn&apos;t need it&apos;s own file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#5c209d80</link>
        <description>drm/gma500: psb_spank() doesn&apos;t need it&apos;s own fileSince everything else in accel_2d.c got removed we can move psb_spank()into psb_drv.c where it is used.Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Reviewed-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210201132617.1233-5-patrik.r.jakobsson@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Mon, 01 Feb 2021 13:26:16 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e40f97ef - drm/gma500: Drop DRM_GMA600 config option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#e40f97ef</link>
        <description>drm/gma500: Drop DRM_GMA600 config optionWith support for the MID-only Medfield chips removed, simply buildthe complete driver if DRM_GMA500 has been selected. Anyone who wantsto enable one of the chips would probably also want the rest.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Fixes: 837f23bb4b60 (&quot;drm/gma500: Drop DRM_GMA3600 config option&quot;)Cc: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Cc: dri-devel@lists.freedesktop.orgSigned-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210209112721.3421-1-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Tue, 09 Feb 2021 11:27:21 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>837f23bb - drm/gma500: Drop DRM_GMA3600 config option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#837f23bb</link>
        <description>drm/gma500: Drop DRM_GMA3600 config optionWith support for the MID-related chips removed, only support fordesktop chips is left in the driver. So just build the completedriver if DRM_GMA500 has been selected. Anyone who wants to enablethe Poulsbo code would probably also want the Cedarview code.[Patrik: Fixed conflict due to Oaktrail not being dropped]Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210129095604.32423-4-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 29 Jan 2021 09:56:02 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b51035c2 - drm/gma500: Remove Medfield support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#b51035c2</link>
        <description>drm/gma500: Remove Medfield supportMedfield is an outdated mobile platform with apparently no users left.Remove it from gma500.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210129095604.32423-2-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 29 Jan 2021 09:56:00 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e05de784 - drm/gma500: remove unneeded -Iinclude/drm compiler flag</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#e05de784</link>
        <description>drm/gma500: remove unneeded -Iinclude/drm compiler flagWith the include directives under include/drm/ fixed, this flag isno longer needed.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1493009447-31524-19-git-send-email-yamada.masahiro@socionext.com

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Mon, 24 Apr 2017 04:50:36 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>5a52b1f2 - drm/gma500: add support for atom e6xx lpc lvds i2c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#5a52b1f2</link>
        <description>drm/gma500: add support for atom e6xx lpc lvds i2cadd gpio bitbanging i2c adapter on LPC device of atom e6xxgpu chipset to access lvds EDIDtested on SECO QuadMo747-E6xx-EXTREME Qseven platformReviewed-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;Signed-off-by: Jan Safrata &lt;jan.nikitenko@gmail.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 26 Sep 2014 08:40:29 +0000</pubDate>
        <dc:creator>Jan Safrata &lt;jan.nikitenko@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f35257a3 - drm/gma500: Unify _get_core_freq for cdv and psb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#f35257a3</link>
        <description>drm/gma500: Unify _get_core_freq for cdv and psbSigned-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Tue, 11 Mar 2014 21:53:43 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1c6b5d17 - drm/gma500: Add first piece of blitter code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#1c6b5d17</link>
        <description>drm/gma500: Add first piece of blitter codeRight now, all we need to know about the blitter is that it&apos;s not doinganything that can be messed up when fiddling with MMU mappings.Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Sat, 04 Jan 2014 19:58:35 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5ea75e0f - drm/gma500: Add generic code for clock calculation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#5ea75e0f</link>
        <description>drm/gma500: Add generic code for clock calculationThis patch aims to unify the bits and pieces that are common (or similarenough) for pll clock calculations. Nothing makes use of this code yetThat will come in later patches.Signed-off-by: Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Sun, 30 Jun 2013 19:39:00 +0000</pubDate>
        <dc:creator>Patrik Jakobsson &lt;patrik.r.jakobsson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4d46259f - drm: gma500: Kill the GEM glue layer</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#4d46259f</link>
        <description>drm: gma500: Kill the GEM glue layerThe private gem_create_mmap_offset() function is now implemented in theDRM core as drm_gem_create_mmap_offset(). Use it and kill the privatecopy.Signed-off-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Alan Cox &lt;alan@linux.intel.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Tue, 24 Jul 2012 15:47:34 +0000</pubDate>
        <dc:creator>Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;</dc:creator>
    </item>
<item>
        <title>37e7b184 - gma500/cdv: sync up and add the displayport code to the build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#37e7b184</link>
        <description>gma500/cdv: sync up and add the displayport code to the buildThis is mostly just aligning bits of behaviourSigned-off-by: Alan Cox &lt;alan@linux.intel.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Wed, 08 Aug 2012 13:55:03 +0000</pubDate>
        <dc:creator>Alan Cox &lt;alan@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a373bedd - gma500: Fix build without ACPI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#a373bedd</link>
        <description>gma500: Fix build without ACPIReported-by: Randy Dunlap &lt;rdunlap@xenotime.net&gt;Signed-off-by: Alan Cox &lt;alan@linux.intel.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Fri, 11 May 2012 10:29:41 +0000</pubDate>
        <dc:creator>Alan Cox &lt;alan@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4ad35b2e - gma500: fix -Wmissing-include-dirs warnings</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#4ad35b2e</link>
        <description>gma500: fix -Wmissing-include-dirs warningscc1: warning: include/drm: No such file or directory [enabled by default]It&apos;s reproducible if you build with O=/some/obj/dir and W=1.Signed-off-by: Kirill A. Shutemov &lt;kirill.shutemov@linux.intel.com&gt;Signed-off-by: Alan Cox &lt;alan@linux.intel.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Thu, 03 May 2012 14:16:14 +0000</pubDate>
        <dc:creator>Kirill A. Shutemov &lt;kirill.shutemov@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d839ede4 - gma500: opregion and ACPI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/gma500/Makefile#d839ede4</link>
        <description>gma500: opregion and ACPIAdd the opregion support and bring us in line with the opregion functionality in thereference driver code. We can&apos;t share this with i915 currently because there arehardcoded assumptions about dev_priv etc in both versions.[airlied: include opregion.h fix]Signed-off-by: Alan Cox &lt;alan@linux.intel.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/gma500/Makefile</description>
        <pubDate>Thu, 03 May 2012 14:06:18 +0000</pubDate>
        <dc:creator>Alan Cox &lt;alan@linux.intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
