<?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>9abdd497 - gpu: host1x: Tegra234 device data and headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#9abdd497</link>
        <description>gpu: host1x: Tegra234 device data and headersAdd device data and chip headers for Tegra234.Signed-off-by: Mikko Perttunen &lt;mperttunen@nvidia.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 27 Jun 2022 14:20:04 +0000</pubDate>
        <dc:creator>Mikko Perttunen &lt;mperttunen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>8aa5bcb6 - gpu: host1x: Add context device management code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#8aa5bcb6</link>
        <description>gpu: host1x: Add context device management codeAdd code to register context devices from device tree, allocate themout and manage their refcounts.Signed-off-by: Mikko Perttunen &lt;mperttunen@nvidia.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 27 Jun 2022 14:19:48 +0000</pubDate>
        <dc:creator>Mikko Perttunen &lt;mperttunen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>597b89d3 - gpu: host1x: Add context bus</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#597b89d3</link>
        <description>gpu: host1x: Add context busThe context bus is a &quot;dummy&quot; bus that contains struct devices thatcorrespond to IOMMU contexts assigned through Host1x to processes.Even when host1x itself is built as a module, the bus is registeredin built-in code so that the built-in ARM SMMU driver is able toreference it.Signed-off-by: Mikko Perttunen &lt;mperttunen@nvidia.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 16 May 2022 08:52:51 +0000</pubDate>
        <dc:creator>Mikko Perttunen &lt;mperttunen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>687db220 - gpu: host1x: Add DMA fence implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#687db220</link>
        <description>gpu: host1x: Add DMA fence implementationAdd an implementation of dma_fences based on syncpoints. Syncpointinterrupts are used to signal fences. Additionally, aftersoftware signaling has been enabled, a 30 second timeout is started.If the syncpoint threshold is not reached within this period,the fence is signalled with an -ETIMEDOUT error code. This is toallow fences that would never reach their syncpoint threshold tobe cleaned up. The timeout can potentially be removed in the futureafter job tracking code has been refactored.Signed-off-by: Mikko Perttunen &lt;mperttunen@nvidia.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Thu, 10 Jun 2021 11:04:42 +0000</pubDate>
        <dc:creator>Mikko Perttunen &lt;mperttunen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>ac1bdbf2 - gpu: host1x: Add Tegra194 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#ac1bdbf2</link>
        <description>gpu: host1x: Add Tegra194 supportThe host1x hardware found on Tegra194 is mostly backwards compatiblewith the version found on Tegra186, with the notable exceptions of theincreased number of syncpoints and mlocks. In addition, some rarelyused features such as syncpoint wait bases were dropped and someregisters had to move around to accomodate the increased number ofsyncpoints.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Thu, 25 Jan 2018 12:10:44 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&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/host1x/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/host1x/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>f1b53c4e - gpu: host1x: Add Tegra186 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#f1b53c4e</link>
        <description>gpu: host1x: Add Tegra186 supportAdd support for the implementation of Host1x present on the Tegra186.The register space has been shuffled around a little bit, requiringaddition of some chip-specific code sections. Tegra186 also addsseveral new features, most importantly the hypervisor, but those arenot yet supported with this commit.Signed-off-by: Mikko Perttunen &lt;mperttunen@nvidia.com&gt;Reviewed-by: Dmitry Osipenko &lt;digetx@gmail.com&gt;Tested-by: Dmitry Osipenko &lt;digetx@gmail.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Tue, 05 Sep 2017 08:43:05 +0000</pubDate>
        <dc:creator>Mikko Perttunen &lt;mperttunen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>a134789a - gpu: host1x: Add Tegra210 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#a134789a</link>
        <description>gpu: host1x: Add Tegra210 supportThe host1x unit found in Tegra210 SoCs is very similar to the unit inTegra124, but it has 2 additional channels for a total of 14 channels.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 23 Mar 2015 09:46:28 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>e6fff4aa - gpu: host1x: Add Tegra124 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#e6fff4aa</link>
        <description>gpu: host1x: Add Tegra124 supportTegra124 has 192 syncpoints whereas its predecessors had 32 syncpoints.This required changes to the hardware register layout.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 15 Nov 2013 13:58:05 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>4de6a2d6 - gpu: host1x: Add MIPI pad calibration support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#4de6a2d6</link>
        <description>gpu: host1x: Add MIPI pad calibration supportThis driver adds support to perform calibration of the MIPI pads for CSIand DSI.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 02 Sep 2013 07:48:53 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>5407f31b - gpu: host1x: Add support for Tegra114</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#5407f31b</link>
        <description>gpu: host1x: Add support for Tegra114Tegra114 uses a slightly updated version of host1x with an additionalsyncpoint.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 30 Sep 2013 12:17:39 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>dee8268f - drm/tegra: Move driver to DRM tree</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#dee8268f</link>
        <description>drm/tegra: Move driver to DRM treeIn order to make subsystem-wide changes easier, move the Tegra DRMdriver back into the DRM tree.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Wed, 09 Oct 2013 08:32:49 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>fc3be3e8 - gpu: host1x: Use relative include paths</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#fc3be3e8</link>
        <description>gpu: host1x: Use relative include pathsThis is slightly safer than adding -Idrivers/gpu/host1x to cflags-y.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Wed, 09 Oct 2013 08:32:54 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>776dc384 - drm/tegra: Move subdevice infrastructure to host1x</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#776dc384</link>
        <description>drm/tegra: Move subdevice infrastructure to host1xThe Tegra DRM driver currently uses some infrastructure to defer the DRMcore initialization until all required devices have registered. The sameinfrastructure can potentially be used by any other driver that requiresmore than a single sub-device of the host1x module.Make the infrastructure more generic and keep only the DRM specific codein the DRM part of the driver. Eventually this will make it easy to movethe DRM driver part back to the DRM subsystem.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Mon, 14 Oct 2013 12:43:22 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>d43f81cb - drm/tegra: Add gr2d device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#d43f81cb</link>
        <description>drm/tegra: Add gr2d deviceAdd client driver for 2D device, and IOCTLs to pass work to host1xchannel for 2D.Also adds functions that can be called to access sync points fromDRM.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:09 +0000</pubDate>
        <dc:creator>Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>de2ba664 - gpu: host1x: drm: Add memory manager and fb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#de2ba664</link>
        <description>gpu: host1x: drm: Add memory manager and fbThis patch introduces a memory manager for tegra drm and movesexisting parts to use it. As cma framebuffer helpers can no morebe used, this patch adds also a separate framebuffer driver fortegra.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:08 +0000</pubDate>
        <dc:creator>Arto Merilainen &lt;amerilainen@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>692e6d7b - gpu: host1x: Remove second host1x driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#692e6d7b</link>
        <description>gpu: host1x: Remove second host1x driverRemove second host1x driver, and bind tegra-drm to the new host1xdriver. The logic to parse device tree and track clients is movedto drm.c.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:07 +0000</pubDate>
        <dc:creator>Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>4231c6b0 - drm/tegra: Move drm to live under host1x</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#4231c6b0</link>
        <description>drm/tegra: Move drm to live under host1xMake drm part of host1x driver.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:05 +0000</pubDate>
        <dc:creator>Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>6236451d - gpu: host1x: Add debug support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#6236451d</link>
        <description>gpu: host1x: Add debug supportAdd support for host1x debugging. Adds debugfs entries, and dumpschannel state to UART in case of stuck job.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:04 +0000</pubDate>
        <dc:creator>Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>6579324a - gpu: host1x: Add channel support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/host1x/Makefile#6579324a</link>
        <description>gpu: host1x: Add channel supportAdd support for host1x client modules, and host1x channels to submitwork to the clients.Signed-off-by: Arto Merilainen &lt;amerilainen@nvidia.com&gt;Signed-off-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;Reviewed-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Tested-by: Erik Faye-Lund &lt;kusmabite@gmail.com&gt;Signed-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/host1x/Makefile</description>
        <pubDate>Fri, 22 Mar 2013 14:34:03 +0000</pubDate>
        <dc:creator>Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;</dc:creator>
    </item>
</channel>
</rss>
