<?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>c40845e3 - kbuild: make -Woverride-init warnings more consistent</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#c40845e3</link>
        <description>kbuild: make -Woverride-init warnings more consistentThe -Woverride-init warn about code that may be intentional or not,but the inintentional ones tend to be real bugs, so there is a bit ofdisagreement on whether this warning option should be enabled by defaultand we have multiple settings in scripts/Makefile.extrawarn as well asindividual subsystems.Older versions of clang only supported -Wno-initializer-overrides withthe same meaning as gcc&apos;s -Woverride-init, though all supported versionsnow work with both. Because of this difference, an earlier cleanup ofmine accidentally turned the clang warning off for W=1 builds and onlyleft it on for W=2, while it&apos;s still enabled for gcc with W=1.There is also one driver that only turns the warning off for newerversions of gcc but not other compilers, and some but not all theMakefiles still use a cc-disable-warning conditional that is nolonger needed with supported compilers here.Address all of the above by removing the special cases for clangand always turning the warning off unconditionally where it gotin the way, using the syntax that is supported by both compilers.Fixes: 2cd3271b7a31 (&quot;kbuild: avoid duplicate warning options&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Hamza Mahfooz &lt;hamza.mahfooz@amd.com&gt;Acked-by: Jani Nikula &lt;jani.nikula@intel.com&gt;Acked-by: Andrew Jeffery &lt;andrew@codeconstruct.com.au&gt;Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Tue, 26 Mar 2024 14:47:16 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>8b8eed05 - drm/amd/display: Refactor resource into component directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#8b8eed05</link>
        <description>drm/amd/display: Refactor resource into component directory[WHY]Move all resource files to unique folder resource.[HOW]Created resource folder in dc, moved thedcnxx_resource.c and dcnxx_resource.h files intocorresponding new folders inside the resource andmade appropriate changes for compilation in Makefiles.Reviewed-by: Martin Leung &lt;martin.leung@amd.com&gt;Acked-by: Alex Hung &lt;alex.hung@amd.com&gt;Signed-off-by: Mounika Adhuri &lt;moadhuri@amd.com&gt;Tested-by: Daniel Wheeler &lt;daniel.wheeler@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Fri, 06 Oct 2023 09:35:42 +0000</pubDate>
        <dc:creator>Mounika Adhuri &lt;moadhuri@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>e53524cd - drm/amd/display: Refactor HWSS into component folder</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#e53524cd</link>
        <description>drm/amd/display: Refactor HWSS into component folder[why]Rename hw_sequencer to hwseq.Move all hwseq files to uniquefolder hwss.[how]creating hwss repo in dc, and moved the dcnxx_hwseq.cand .h files into corresponding new folders inside the hwssand cleared the linkage errors by adding relative pathsin the Makefile.template.Reviewed-by: Martin Leung &lt;martin.leung@amd.com&gt;Acked-by: Tom Chung &lt;chiahsuan.chung@amd.com&gt;Signed-off-by: Mounika Adhuri &lt;moadhuri@amd.com&gt;Tested-by: Daniel Wheeler &lt;daniel.wheeler@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Fri, 22 Sep 2023 12:53:28 +0000</pubDate>
        <dc:creator>Mounika Adhuri &lt;moadhuri@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>10661504 - drm/amd/display/dc/dce80/Makefile: Ignore -Woverride-init warning</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#10661504</link>
        <description>drm/amd/display/dc/dce80/Makefile: Ignore -Woverride-init warningFixes the following W=1 kernel build warning(s): In file included from drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:29: drivers/gpu/drm/amd/amdgpu/../include/asic_reg/dce/dce_8_0_sh_mask.h:9546:58: warning: initialized field overwritten [-Woverride-init] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:213:16: note: in expansion of macro &#8216;AUX_SW_DATA__AUX_SW_AUTOINCREMENT_DISABLE__SHIFT&#8217; drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:102:2: note: in expansion of macro &#8216;AUX_SF&#8217; drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:305:2: note: in expansion of macro &#8216;DCE10_AUX_MASK_SH_LIST&#8217; drivers/gpu/drm/amd/amdgpu/../include/asic_reg/dce/dce_8_0_sh_mask.h:9546:58: note: (near initialization for &#8216;aux_shift.AUX_SW_AUTOINCREMENT_DISABLE&#8217;) drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:213:16: note: in expansion of macro &#8216;AUX_SW_DATA__AUX_SW_AUTOINCREMENT_DISABLE__SHIFT&#8217; drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:102:2: note: in expansion of macro &#8216;AUX_SF&#8217; drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:305:2: note: in expansion of macro &#8216;DCE10_AUX_MASK_SH_LIST&#8217; drivers/gpu/drm/amd/amdgpu/../include/asic_reg/dce/dce_8_0_sh_mask.h:9545:56: warning: initialized field overwritten [-Woverride-init] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:213:16: note: in expansion of macro &#8216;AUX_SW_DATA__AUX_SW_AUTOINCREMENT_DISABLE_MASK&#8217; drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.h:102:2: note: in expansion of macro &#8216;AUX_SF&#8217;NB: Snipped lots for the sake of brevityCc: Harry Wentland &lt;harry.wentland@amd.com&gt;Cc: Leo Li &lt;sunpeng.li@amd.com&gt;Cc: Alex Deucher &lt;alexander.deucher@amd.com&gt;Cc: &quot;Christian K&#246;nig&quot; &lt;christian.koenig@amd.com&gt;Cc: David Airlie &lt;airlied@linux.ie&gt;Cc: Daniel Vetter &lt;daniel@ffwll.ch&gt;Cc: amd-gfx@lists.freedesktop.orgCc: dri-devel@lists.freedesktop.orgSigned-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Wed, 13 Jan 2021 08:07:36 +0000</pubDate>
        <dc:creator>Lee Jones &lt;lee.jones@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>92e2239e - drm/amd/display: Remove unused DCE80 compressor</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#92e2239e</link>
        <description>drm/amd/display: Remove unused DCE80 compressorSigned-off-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Reviewed-by: Tony Cheng &lt;Tony.Cheng@amd.com&gt;Acked-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Wed, 24 Jan 2018 15:47:37 +0000</pubDate>
        <dc:creator>Harry Wentland &lt;harry.wentland@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>1a09120f - drm/amdgpu: add license to Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#1a09120f</link>
        <description>drm/amdgpu: add license to MakefilesWas missing license text.Acked-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Acked-by: Felix Kuehling &lt;Felix.Kuehling@amd.com&gt;Acked-by: Christian K&#246;nig &lt;christian.koenig@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Fri, 01 Dec 2017 02:15:50 +0000</pubDate>
        <dc:creator>Alex Deucher &lt;alexander.deucher@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>e2874a3c - drm/amdgpu: add license to Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#e2874a3c</link>
        <description>drm/amdgpu: add license to MakefilesWas missing license text.Acked-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Acked-by: Felix Kuehling &lt;Felix.Kuehling@amd.com&gt;Acked-by: Christian K&#246;nig &lt;christian.koenig@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Fri, 01 Dec 2017 02:15:50 +0000</pubDate>
        <dc:creator>Alex Deucher &lt;alexander.deucher@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>c3489214 - drm/amd/display: dce 8 - 12 mem_input refactor to new style</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#c3489214</link>
        <description>drm/amd/display: dce 8 - 12 mem_input refactor to new styleSigned-off-by: Dmytro Laktyushkin &lt;Dmytro.Laktyushkin@amd.com&gt;Reviewed-by: Tony Cheng &lt;Tony.Cheng@amd.com&gt;Acked-by: Harry Wentland &lt;Harry.Wentland@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Mon, 15 May 2017 12:31:51 +0000</pubDate>
        <dc:creator>Dmytro Laktyushkin &lt;Dmytro.Laktyushkin@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>e6303950 - drm/amd/display: dce80, 100, 110 and 112 to dce ipp refactor</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#e6303950</link>
        <description>drm/amd/display: dce80, 100, 110 and 112 to dce ipp refactorSigned-off-by: Dmytro Laktyushkin &lt;Dmytro.Laktyushkin@amd.com&gt;Acked-by: Harry Wentland &lt;Harry.Wentland@amd.com&gt;Reviewed-by: Tony Cheng &lt;Tony.Cheng@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Mon, 24 Apr 2017 20:30:58 +0000</pubDate>
        <dc:creator>Dmytro Laktyushkin &lt;Dmytro.Laktyushkin@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>5936223f - drm/amd/display: Fix gamma colour corruption for 10 bit surfaces</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#5936223f</link>
        <description>drm/amd/display: Fix gamma colour corruption for 10 bit surfacesGamma LUT shouldn&apos;t be used for 10-bit and above. Should instead beusing prescale and bypassing input gamma.Signed-off-by: Jordan Lazare &lt;Jordan.Lazare@amd.com&gt;Acked-by: Harry Wentland &lt;Harry.Wentland@amd.com&gt;Reviewed-by: Tony Cheng &lt;Tony.Cheng@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Thu, 23 Feb 2017 19:07:29 +0000</pubDate>
        <dc:creator>Jordan Lazare &lt;Jordan.Lazare@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>ab3ee7a5 - drm/amd/display: OPP refactor and consolidation for DCE.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#ab3ee7a5</link>
        <description>drm/amd/display: OPP refactor and consolidation for DCE.Signed-off-by: Zeyu Fan &lt;Zeyu.Fan@amd.com&gt;Reviewed-by: Tony Cheng &lt;Tony.Cheng@amd.com&gt;Acked-by: Harry Wentland &lt;Harry.Wentland@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Wed, 14 Dec 2016 23:54:41 +0000</pubDate>
        <dc:creator>Zeyu Fan &lt;Zeyu.Fan@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4562236b - drm/amd/dc: Add dc display driver (v2)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile#4562236b</link>
        <description>drm/amd/dc: Add dc display driver (v2)Supported DCE versions: 8.0, 10.0, 11.0, 11.2v2: rebase against 4.11Signed-off-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Acked-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;Signed-off-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/Makefile</description>
        <pubDate>Tue, 12 Sep 2017 19:58:20 +0000</pubDate>
        <dc:creator>Harry Wentland &lt;harry.wentland@amd.com&gt;</dc:creator>
    </item>
</channel>
</rss>
