<?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>a0821ca1 - media: atomisp: Remove test pattern generator (TPG) support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#a0821ca1</link>
        <description>media: atomisp: Remove test pattern generator (TPG) supportThe TPG support registers a v4l2-subdev for this, but this is not part ofthe media-controller graph in any way. After manually selecting the TPGas input using the s_input ioctl it does not work.Several supported sensors have their own working TPG and using the sensor&apos;sTPG means that the same data-flow is used as with actual sensors ratherthen the quite different data-flow from the ISP&apos;s builtin TPG.Remove the broken TPG support, when a test-pattern is needed for testinga sensor&apos;s TPG can be used. Using a sensor&apos;s TPG is actually better fortesting since then the actual normal data-flow is being tested.Reviewed-by: Andy Shevchenko &lt;andy@kernel.org&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Fri, 12 Apr 2024 18:28:46 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>61d6b350 - media: atomisp: Drop VIDEO_ATOMISP_ISP2401 Kconfig option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#61d6b350</link>
        <description>media: atomisp: Drop VIDEO_ATOMISP_ISP2401 Kconfig optionDrop the VIDEO_ATOMISP_ISP2401 Kconfig option and the -DISP2401cflags.This is no longer necessary since all ISP2400 vs ISP2401 differencesare now dealt with at runtime.Many thanks to Kate Hsuan for all her work on this.Link: https://lore.kernel.org/r/20230812133523.355581-2-hdegoede@redhat.comSigned-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 12 Aug 2023 13:35:23 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>feae4208 - media: atomisp: Compile the object codes for a generic driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#feae4208</link>
        <description>media: atomisp: Compile the object codes for a generic driverSince a generic driver should support every type of atomisp, all thecodes need to be compiled. The ISP2401 flag controls the Makefile to buildthe binary file for ISP2400 and ISP2401. Therefore, this section ofMakefile should be removed allowing all the necessary codes can be built.Moreover, some parts of &quot;removing #ifdef ISP2401&quot; works are related to itso they were also removed here.Link: https://lore.kernel.org/r/20230713100231.308923-10-hpa@redhat.comSigned-off-by: Kate Hsuan &lt;hpa@redhat.com&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Thu, 13 Jul 2023 10:02:29 +0000</pubDate>
        <dc:creator>Kate Hsuan &lt;hpa@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>8d28ec7e - media: atomisp: Add support for v4l2-async sensor registration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#8d28ec7e</link>
        <description>media: atomisp: Add support for v4l2-async sensor registrationAdd support for using v4l2-async sensor registration.This has been tested with both the gc0310 and the ov2680 sensor drivers.Drivers must add the ACPI HIDs they match on to the supported_sensors[]array in the same commit as that they are converted tov4l2_async_register_subdev_sensor().Sensor drivers also must check they have a fwnode graph endpoint and return-EPROBE_DEFER from probe() if there is no endpoint yet. This guaranteesthat the GPIO mappings are in place before the driver tries to get GPIOs.For now it also is still possible to use the old atomisp_gmin_platformbased sensor drivers. This is mainly intended for testing while movingother sensor drivers over to runtime-pm + v4l2-async.Link: https://lore.kernel.org/r/20230525190100.130010-2-hdegoede@redhat.comReviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Thu, 25 May 2023 19:00:56 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>29b12ac7 - media: atomisp: Remove file-injection support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#29b12ac7</link>
        <description>media: atomisp: Remove file-injection supportThe file-injection support of the atomisp driver has not been testedand is not necessary for camera support, remove it.Note the main reason for removing this is because it depends onthe videobuf (version 1) outq and we want to remove or replaceall videobuf usage in the driver.Reviewed-by: Andy Shevchenko &lt;andriy.shevchenko@intel.com&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 27 Aug 2022 14:17:07 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>868088a0 - media: atomisp: remove atomisp_acc.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#868088a0</link>
        <description>media: atomisp: remove atomisp_acc.cWith the ACC ioctls removed sd-&gt;acc.fw is always empty turningthe atomisp_acc.c code into no-ops, remove it.Link: https://lore.kernel.org/linux-media/20220615205037.16549-20-hdegoede@redhat.comReviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Wed, 15 Jun 2022 20:50:16 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>b50b217f - media: atomisp: remove dynamic and reserved pool code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#b50b217f</link>
        <description>media: atomisp: remove dynamic and reserved pool codeThere are no callers of this code atm; and looking at the atomispmemory-management code if anything we want to make it simpler andnot re-introduce use of these pools, so remove the pool code.Link: https://lore.kernel.org/linux-media/20220615205037.16549-11-hdegoede@redhat.comReviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Wed, 15 Jun 2022 20:50:07 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>da8fdf49 - media: atomisp: drop empty files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#da8fdf49</link>
        <description>media: atomisp: drop empty filesThere&apos;s nothing inside such files. Just drop them.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Tue, 16 Nov 2021 13:29:44 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4a62b5cc - media: atomisp: get rid of ISP2401_NEW_INPUT_SYSTEM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#4a62b5cc</link>
        <description>media: atomisp: get rid of ISP2401_NEW_INPUT_SYSTEMAll ISP2401 devices use the new input system. So, get ridof the remaining definitions, replacing them by runtimechecks for BYT/CHT when applicable.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Fri, 05 Nov 2021 18:09:13 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2aa38496 - media: atomisp: unify ia_css_isp_params.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#2aa38496</link>
        <description>media: atomisp: unify ia_css_isp_params.cThe contents of ia_css_isp_params.c is almost identical for2400 and 2401. The only difference is that, on 2400, thereare some duplicated assignments. So, drop it, unifying thisfile.While here, simplify the Makefile&apos;s logic by dropping anunused define.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Fri, 05 Nov 2021 11:17:05 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3a9559d8 - media: atomisp: drop duplicated ia_css_isp_states.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#3a9559d8</link>
        <description>media: atomisp: drop duplicated ia_css_isp_states.cBoth 2400 and 2401 have this file, but they&apos;re identical.So, drop one of them.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Fri, 05 Nov 2021 11:09:02 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9df9ee65 - media: atomisp: drop duplicated ia_css_isp_configs.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#9df9ee65</link>
        <description>media: atomisp: drop duplicated ia_css_isp_configs.cBoth 2400 and 2401 have this file, but they&apos;re identical.So, drop one of them.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Fri, 05 Nov 2021 07:50:15 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b4c650f1 - media: atomisp: remove compat_ioctl32 code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#b4c650f1</link>
        <description>media: atomisp: remove compat_ioctl32 codeThis is one of the last remaining users of compat_alloc_user_space()and copy_in_user(), which are in the process of getting removed.As of commit 57e6b6f2303e (&quot;media: atomisp_fops.c: disableatomisp_compat_ioctl32&quot;), nothing in this file is actually getting usedas the only reference has been stubbed out.Remove the entire file -- anyone willing to restore the functionalitycan equally well just look up the contents in the git history if needed.Acked-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Suggested-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Mon, 14 Jun 2021 10:34:07 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>671779f6 - media: staging: media/atomisp: don&apos;t compile unused code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#671779f6</link>
        <description>media: staging: media/atomisp: don&apos;t compile unused codecurrently the functions defined in ibuf_ctrl_rmgr.c file are onlyused by isys_init.c when CONFIG_VIDEO_ATOMISP_ISP2401 is selectedso dont&apos;t compile it when not needed, also fixes some sparse warningsLink: https://lore.kernel.org/linux-media/YDEZu3oniT/vUMMY@karthik-strix-linux.karthek.comSigned-off-by: karthik alapati &lt;mail@karthek.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 20 Feb 2021 14:16:27 +0000</pubDate>
        <dc:creator>karthik alapati &lt;mail@karthek.com&gt;</dc:creator>
    </item>
<item>
        <title>9842fa16 - media: atomisp: don&apos;t check for ISP version for includes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#9842fa16</link>
        <description>media: atomisp: don&apos;t check for ISP version for includesAs there aren&apos;t duplicated names anymore, and the end goalis to do runtime checks between ISP2400 and ISP2401,remove the part of the Makefile which changes the includeplaces based on the compile-time version.This shouldn&apos;t cause any effect, but it will make easierfor further patches meant to remove conditional compilerdecisions between ISP versions to be replaced byruntime ones.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Mon, 20 Jul 2020 09:41:34 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>85ebb8eb - media: atomisp: move system_local consts into a C file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#85ebb8eb</link>
        <description>media: atomisp: move system_local consts into a C fileInstead of declaring all those consts everywhere when theheaders are included, just place them on a single place.This change shuts up lots of warnings when built with W=1:In file included from drivers/staging/media/atomisp/pci/ia_css_acc_types.h:23,                 from drivers/staging/media/atomisp/pci/ia_css.h:26,                 from drivers/staging/media/atomisp/pci/atomisp_compat_css20.h:24,                 from drivers/staging/media/atomisp/pci/atomisp_compat.h:22,                 from drivers/staging/media/atomisp/pci/atomisp_drvfs.c:23:./drivers/staging/media/atomisp//pci/system_local.h:193:26: warning: &#8216;STREAM2MMIO_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  193 | static const hrt_address STREAM2MMIO_CTRL_BASE[N_STREAM2MMIO_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:186:26: warning: &#8216;PIXELGEN_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  186 | static const hrt_address PIXELGEN_CTRL_BASE[N_PIXELGEN_ID] = {      |                          ^~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:179:26: warning: &#8216;CSI_RX_BE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  179 | static const hrt_address CSI_RX_BE_CTRL_BASE[N_CSI_RX_BACKEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:172:26: warning: &#8216;CSI_RX_FE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  172 | static const hrt_address CSI_RX_FE_CTRL_BASE[N_CSI_RX_FRONTEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:165:26: warning: &#8216;ISYS_IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]  165 | static const hrt_address ISYS_IRQ_BASE[N_ISYS_IRQ_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:158:26: warning: &#8216;IBUF_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  158 | static const hrt_address IBUF_CTRL_BASE[N_IBUF_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:153:26: warning: &#8216;RX_BASE&#8217; defined but not used [-Wunused-const-variable=]  153 | static const hrt_address RX_BASE[N_RX_ID] = {      |                          ^~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:138:26: warning: &#8216;INPUT_SYSTEM_BASE&#8217; defined but not used [-Wunused-const-variable=]  138 | static const hrt_address INPUT_SYSTEM_BASE[N_INPUT_SYSTEM_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:130:26: warning: &#8216;INPUT_FORMATTER_BASE&#8217; defined but not used [-Wunused-const-variable=]  130 | static const hrt_address INPUT_FORMATTER_BASE[N_INPUT_FORMATTER_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:125:26: warning: &#8216;TIMED_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  125 | static const hrt_address TIMED_CTRL_BASE[N_TIMED_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:120:26: warning: &#8216;GPIO_BASE&#8217; defined but not used [-Wunused-const-variable=]  120 | static const hrt_address GPIO_BASE[N_GPIO_ID] = {      |                          ^~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:116:26: warning: &#8216;GP_TIMER_BASE&#8217; defined but not used [-Wunused-const-variable=]  116 | static const hrt_address GP_TIMER_BASE =      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:109:26: warning: &#8216;GP_DEVICE_BASE&#8217; defined but not used [-Wunused-const-variable=]  109 | static const hrt_address GP_DEVICE_BASE[N_GP_DEVICE_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:96:26: warning: &#8216;FIFO_MONITOR_BASE&#8217; defined but not used [-Wunused-const-variable=]   96 | static const hrt_address FIFO_MONITOR_BASE[N_FIFO_MONITOR_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:90:26: warning: &#8216;GDC_BASE&#8217; defined but not used [-Wunused-const-variable=]   90 | static const hrt_address GDC_BASE[N_GDC_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:78:26: warning: &#8216;IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]   78 | static const hrt_address IRQ_BASE[N_IRQ_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:73:26: warning: &#8216;ISYS2401_DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   73 | static const hrt_address ISYS2401_DMA_BASE[N_ISYS2401_DMA_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:69:26: warning: &#8216;DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   69 | static const hrt_address DMA_BASE[N_DMA_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:63:26: warning: &#8216;MMU_BASE&#8217; defined but not used [-Wunused-const-variable=]   63 | static const hrt_address MMU_BASE[N_MMU_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:54:26: warning: &#8216;SP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   54 | static const hrt_address SP_DMEM_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:50:26: warning: &#8216;SP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   50 | static const hrt_address SP_CTRL_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:45:26: warning: &#8216;ISP_BAMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   45 | static const hrt_address ISP_BAMEM_BASE[N_BAMEM_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:41:26: warning: &#8216;ISP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   41 | static const hrt_address ISP_DMEM_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:37:26: warning: &#8216;ISP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   37 | static const hrt_address ISP_CTRL_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~In file included from drivers/staging/media/atomisp/pci/ia_css_acc_types.h:23,                 from drivers/staging/media/atomisp/pci/ia_css.h:26,                 from drivers/staging/media/atomisp/pci/atomisp_file.c:27:./drivers/staging/media/atomisp//pci/system_local.h:193:26: warning: &#8216;STREAM2MMIO_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  193 | static const hrt_address STREAM2MMIO_CTRL_BASE[N_STREAM2MMIO_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:186:26: warning: &#8216;PIXELGEN_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  186 | static const hrt_address PIXELGEN_CTRL_BASE[N_PIXELGEN_ID] = {      |                          ^~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:179:26: warning: &#8216;CSI_RX_BE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  179 | static const hrt_address CSI_RX_BE_CTRL_BASE[N_CSI_RX_BACKEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:172:26: warning: &#8216;CSI_RX_FE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  172 | static const hrt_address CSI_RX_FE_CTRL_BASE[N_CSI_RX_FRONTEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:165:26: warning: &#8216;ISYS_IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]  165 | static const hrt_address ISYS_IRQ_BASE[N_ISYS_IRQ_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:158:26: warning: &#8216;IBUF_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  158 | static const hrt_address IBUF_CTRL_BASE[N_IBUF_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:153:26: warning: &#8216;RX_BASE&#8217; defined but not used [-Wunused-const-variable=]  153 | static const hrt_address RX_BASE[N_RX_ID] = {      |                          ^~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:138:26: warning: &#8216;INPUT_SYSTEM_BASE&#8217; defined but not used [-Wunused-const-variable=]  138 | static const hrt_address INPUT_SYSTEM_BASE[N_INPUT_SYSTEM_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:130:26: warning: &#8216;INPUT_FORMATTER_BASE&#8217; defined but not used [-Wunused-const-variable=]  130 | static const hrt_address INPUT_FORMATTER_BASE[N_INPUT_FORMATTER_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:125:26: warning: &#8216;TIMED_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  125 | static const hrt_address TIMED_CTRL_BASE[N_TIMED_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:120:26: warning: &#8216;GPIO_BASE&#8217; defined but not used [-Wunused-const-variable=]  120 | static const hrt_address GPIO_BASE[N_GPIO_ID] = {      |                          ^~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:116:26: warning: &#8216;GP_TIMER_BASE&#8217; defined but not used [-Wunused-const-variable=]  116 | static const hrt_address GP_TIMER_BASE =      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:109:26: warning: &#8216;GP_DEVICE_BASE&#8217; defined but not used [-Wunused-const-variable=]  109 | static const hrt_address GP_DEVICE_BASE[N_GP_DEVICE_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:96:26: warning: &#8216;FIFO_MONITOR_BASE&#8217; defined but not used [-Wunused-const-variable=]   96 | static const hrt_address FIFO_MONITOR_BASE[N_FIFO_MONITOR_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:90:26: warning: &#8216;GDC_BASE&#8217; defined but not used [-Wunused-const-variable=]   90 | static const hrt_address GDC_BASE[N_GDC_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:78:26: warning: &#8216;IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]   78 | static const hrt_address IRQ_BASE[N_IRQ_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:73:26: warning: &#8216;ISYS2401_DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   73 | static const hrt_address ISYS2401_DMA_BASE[N_ISYS2401_DMA_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:69:26: warning: &#8216;DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   69 | static const hrt_address DMA_BASE[N_DMA_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:63:26: warning: &#8216;MMU_BASE&#8217; defined but not used [-Wunused-const-variable=]   63 | static const hrt_address MMU_BASE[N_MMU_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:54:26: warning: &#8216;SP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   54 | static const hrt_address SP_DMEM_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:50:26: warning: &#8216;SP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   50 | static const hrt_address SP_CTRL_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:45:26: warning: &#8216;ISP_BAMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   45 | static const hrt_address ISP_BAMEM_BASE[N_BAMEM_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:41:26: warning: &#8216;ISP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   41 | static const hrt_address ISP_DMEM_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:37:26: warning: &#8216;ISP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   37 | static const hrt_address ISP_CTRL_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~In file included from ./drivers/staging/media/atomisp//pci/ia_css_acc_types.h:23,                 from ./drivers/staging/media/atomisp//pci/ia_css_pipe_public.h:29,                 from drivers/staging/media/atomisp/pci/sh_css_legacy.h:23,                 from drivers/staging/media/atomisp/pci/atomisp_internal.h:34,                 from drivers/staging/media/atomisp/pci/atomisp_cmd.h:30,                 from drivers/staging/media/atomisp/pci/atomisp_csi2.c:21:./drivers/staging/media/atomisp//pci/system_local.h:193:26: warning: &#8216;STREAM2MMIO_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  193 | static const hrt_address STREAM2MMIO_CTRL_BASE[N_STREAM2MMIO_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:186:26: warning: &#8216;PIXELGEN_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  186 | static const hrt_address PIXELGEN_CTRL_BASE[N_PIXELGEN_ID] = {      |                          ^~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:179:26: warning: &#8216;CSI_RX_BE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  179 | static const hrt_address CSI_RX_BE_CTRL_BASE[N_CSI_RX_BACKEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:172:26: warning: &#8216;CSI_RX_FE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  172 | static const hrt_address CSI_RX_FE_CTRL_BASE[N_CSI_RX_FRONTEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:165:26: warning: &#8216;ISYS_IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]  165 | static const hrt_address ISYS_IRQ_BASE[N_ISYS_IRQ_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:158:26: warning: &#8216;IBUF_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  158 | static const hrt_address IBUF_CTRL_BASE[N_IBUF_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:153:26: warning: &#8216;RX_BASE&#8217; defined but not used [-Wunused-const-variable=]  153 | static const hrt_address RX_BASE[N_RX_ID] = {      |                          ^~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:138:26: warning: &#8216;INPUT_SYSTEM_BASE&#8217; defined but not used [-Wunused-const-variable=]  138 | static const hrt_address INPUT_SYSTEM_BASE[N_INPUT_SYSTEM_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:130:26: warning: &#8216;INPUT_FORMATTER_BASE&#8217; defined but not used [-Wunused-const-variable=]  130 | static const hrt_address INPUT_FORMATTER_BASE[N_INPUT_FORMATTER_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:125:26: warning: &#8216;TIMED_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  125 | static const hrt_address TIMED_CTRL_BASE[N_TIMED_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:120:26: warning: &#8216;GPIO_BASE&#8217; defined but not used [-Wunused-const-variable=]  120 | static const hrt_address GPIO_BASE[N_GPIO_ID] = {      |                          ^~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:116:26: warning: &#8216;GP_TIMER_BASE&#8217; defined but not used [-Wunused-const-variable=]  116 | static const hrt_address GP_TIMER_BASE =      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:109:26: warning: &#8216;GP_DEVICE_BASE&#8217; defined but not used [-Wunused-const-variable=]  109 | static const hrt_address GP_DEVICE_BASE[N_GP_DEVICE_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:96:26: warning: &#8216;FIFO_MONITOR_BASE&#8217; defined but not used [-Wunused-const-variable=]   96 | static const hrt_address FIFO_MONITOR_BASE[N_FIFO_MONITOR_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:90:26: warning: &#8216;GDC_BASE&#8217; defined but not used [-Wunused-const-variable=]   90 | static const hrt_address GDC_BASE[N_GDC_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:78:26: warning: &#8216;IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]   78 | static const hrt_address IRQ_BASE[N_IRQ_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:73:26: warning: &#8216;ISYS2401_DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   73 | static const hrt_address ISYS2401_DMA_BASE[N_ISYS2401_DMA_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:69:26: warning: &#8216;DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   69 | static const hrt_address DMA_BASE[N_DMA_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:63:26: warning: &#8216;MMU_BASE&#8217; defined but not used [-Wunused-const-variable=]   63 | static const hrt_address MMU_BASE[N_MMU_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:54:26: warning: &#8216;SP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   54 | static const hrt_address SP_DMEM_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:50:26: warning: &#8216;SP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   50 | static const hrt_address SP_CTRL_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:45:26: warning: &#8216;ISP_BAMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   45 | static const hrt_address ISP_BAMEM_BASE[N_BAMEM_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:41:26: warning: &#8216;ISP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   41 | static const hrt_address ISP_DMEM_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:37:26: warning: &#8216;ISP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   37 | static const hrt_address ISP_CTRL_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~In file included from ./drivers/staging/media/atomisp//pci/ia_css_acc_types.h:23,                 from ./drivers/staging/media/atomisp//pci/ia_css_pipe_public.h:29,                 from drivers/staging/media/atomisp/pci/sh_css_legacy.h:23,                 from drivers/staging/media/atomisp/pci/atomisp_internal.h:34,                 from drivers/staging/media/atomisp/pci/atomisp_acc.h:23,                 from drivers/staging/media/atomisp/pci/atomisp_acc.c:29:./drivers/staging/media/atomisp//pci/system_local.h:193:26: warning: &#8216;STREAM2MMIO_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  193 | static const hrt_address STREAM2MMIO_CTRL_BASE[N_STREAM2MMIO_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:186:26: warning: &#8216;PIXELGEN_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  186 | static const hrt_address PIXELGEN_CTRL_BASE[N_PIXELGEN_ID] = {      |                          ^~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:179:26: warning: &#8216;CSI_RX_BE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  179 | static const hrt_address CSI_RX_BE_CTRL_BASE[N_CSI_RX_BACKEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:172:26: warning: &#8216;CSI_RX_FE_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  172 | static const hrt_address CSI_RX_FE_CTRL_BASE[N_CSI_RX_FRONTEND_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:165:26: warning: &#8216;ISYS_IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]  165 | static const hrt_address ISYS_IRQ_BASE[N_ISYS_IRQ_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:158:26: warning: &#8216;IBUF_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  158 | static const hrt_address IBUF_CTRL_BASE[N_IBUF_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:153:26: warning: &#8216;RX_BASE&#8217; defined but not used [-Wunused-const-variable=]  153 | static const hrt_address RX_BASE[N_RX_ID] = {      |                          ^~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:138:26: warning: &#8216;INPUT_SYSTEM_BASE&#8217; defined but not used [-Wunused-const-variable=]  138 | static const hrt_address INPUT_SYSTEM_BASE[N_INPUT_SYSTEM_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:130:26: warning: &#8216;INPUT_FORMATTER_BASE&#8217; defined but not used [-Wunused-const-variable=]  130 | static const hrt_address INPUT_FORMATTER_BASE[N_INPUT_FORMATTER_ID] = {      |                          ^~~~~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:125:26: warning: &#8216;TIMED_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]  125 | static const hrt_address TIMED_CTRL_BASE[N_TIMED_CTRL_ID] = {      |                          ^~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:120:26: warning: &#8216;GPIO_BASE&#8217; defined but not used [-Wunused-const-variable=]  120 | static const hrt_address GPIO_BASE[N_GPIO_ID] = {      |                          ^~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:116:26: warning: &#8216;GP_TIMER_BASE&#8217; defined but not used [-Wunused-const-variable=]  116 | static const hrt_address GP_TIMER_BASE =      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:109:26: warning: &#8216;GP_DEVICE_BASE&#8217; defined but not used [-Wunused-const-variable=]  109 | static const hrt_address GP_DEVICE_BASE[N_GP_DEVICE_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:96:26: warning: &#8216;FIFO_MONITOR_BASE&#8217; defined but not used [-Wunused-const-variable=]   96 | static const hrt_address FIFO_MONITOR_BASE[N_FIFO_MONITOR_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:90:26: warning: &#8216;GDC_BASE&#8217; defined but not used [-Wunused-const-variable=]   90 | static const hrt_address GDC_BASE[N_GDC_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:78:26: warning: &#8216;IRQ_BASE&#8217; defined but not used [-Wunused-const-variable=]   78 | static const hrt_address IRQ_BASE[N_IRQ_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:73:26: warning: &#8216;ISYS2401_DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   73 | static const hrt_address ISYS2401_DMA_BASE[N_ISYS2401_DMA_ID] = {      |                          ^~~~~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:69:26: warning: &#8216;DMA_BASE&#8217; defined but not used [-Wunused-const-variable=]   69 | static const hrt_address DMA_BASE[N_DMA_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:63:26: warning: &#8216;MMU_BASE&#8217; defined but not used [-Wunused-const-variable=]   63 | static const hrt_address MMU_BASE[N_MMU_ID] = {      |                          ^~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:54:26: warning: &#8216;SP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   54 | static const hrt_address SP_DMEM_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:50:26: warning: &#8216;SP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   50 | static const hrt_address SP_CTRL_BASE[N_SP_ID] = {      |                          ^~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:45:26: warning: &#8216;ISP_BAMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   45 | static const hrt_address ISP_BAMEM_BASE[N_BAMEM_ID] = {      |                          ^~~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:41:26: warning: &#8216;ISP_DMEM_BASE&#8217; defined but not used [-Wunused-const-variable=]   41 | static const hrt_address ISP_DMEM_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~./drivers/staging/media/atomisp//pci/system_local.h:37:26: warning: &#8216;ISP_CTRL_BASE&#8217; defined but not used [-Wunused-const-variable=]   37 | static const hrt_address ISP_CTRL_BASE[N_ISP_ID] = {      |                          ^~~~~~~~~~~~~Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sun, 19 Jul 2020 05:11:00 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3a074460 - media: atomisp: Clean up non-existing folders from Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#3a074460</link>
        <description>media: atomisp: Clean up non-existing folders from MakefileCompiler is not happy about leftovers:  cc1: warning: .../pci/hrt/: No such file or directory [-Wmissing-include-dirs]  cc1: warning: .../pci/hive_isp_css_include/memory_access/: No such file or directory [-Wmissing-include-dirs]  cc1: warning: .../pci/css_2400_system/hrt/: No such file or directory [-Wmissing-include-dirs]Drop them from Makefile.Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Mon, 29 Jun 2020 10:57:39 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c0818685 - media: atomisp: get rid of sh_css_pipe.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#c0818685</link>
        <description>media: atomisp: get rid of sh_css_pipe.cThere&apos;s nothing there, just comments.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 30 May 2020 19:06:42 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5b552b19 - media: atomisp: re-enable warnings again</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#5b552b19</link>
        <description>media: atomisp: re-enable warnings againFor most warnings, the current code is OK. There are stillsome issues with implicit-fallthough warnings.Solve those and re-enable all warnings for this driver.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 30 May 2020 16:10:07 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f5fbb83f - media: atomisp: add SPDX headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/media/atomisp/Makefile#f5fbb83f</link>
        <description>media: atomisp: add SPDX headersThis driver is licensed under GPL 2.0, as stated inside theirheaders.Add the proper tag there. We should probably latter cleanupthe reduntant licensing text, but this could be done later,after we get rid of other abstraction layers.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/staging/media/atomisp/Makefile</description>
        <pubDate>Sat, 30 May 2020 05:38:24 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
