<?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>b12d0bec - PCI/MSI: Move pci_disable_msi() to api.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#b12d0bec</link>
        <description>PCI/MSI: Move pci_disable_msi() to api.cmsi.c is a maze of randomly sorted functions which makes the codeunreadable. As a first step split the driver visible API and the internalimplementation which also allows proper API documentation via one file.Create drivers/pci/msi/api.c to group all exported device-driver PCI/MSIAPIs in one C file.Begin by moving pci_disable_msi() there and add kernel-doc for the functionas appropriate.Suggested-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Ahmed S. Darwish &lt;darwi@linutronix.de&gt;Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20221111122014.696798036@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 13:54:45 +0000</pubDate>
        <dc:creator>Ahmed S. Darwish &lt;darwi@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>a474d3fb - PCI/MSI: Get rid of PCI_MSI_IRQ_DOMAIN</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#a474d3fb</link>
        <description>PCI/MSI: Get rid of PCI_MSI_IRQ_DOMAINWhat a zoo:     PCI_MSI	select GENERIC_MSI_IRQ     PCI_MSI_IRQ_DOMAIN     	def_bool y	depends on PCI_MSI	select GENERIC_MSI_IRQ_DOMAINErgo PCI_MSI enables PCI_MSI_IRQ_DOMAIN which in turn selectsGENERIC_MSI_IRQ_DOMAIN. So all the dependencies on PCI_MSI_IRQ_DOMAIN arejust an indirection to PCI_MSI.Match the reality and just admit that PCI_MSI requiresGENERIC_MSI_IRQ_DOMAIN.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20221111122014.467556921@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 13:54:38 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>aa423ac4 - PCI/MSI: Split out irqdomain code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#aa423ac4</link>
        <description>PCI/MSI: Split out irqdomain codeMove the irqdomain specific code into its own file.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Tested-by: Juergen Gross &lt;jgross@suse.com&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20211206210224.817754783@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Mon, 06 Dec 2021 22:27:52 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>a01e09ef - PCI/MSI: Split out !IRQDOMAIN code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#a01e09ef</link>
        <description>PCI/MSI: Split out !IRQDOMAIN codeSplit out the non irqdomain code into its own file.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Tested-by: Juergen Gross &lt;jgross@suse.com&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20211206210224.763574089@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Mon, 06 Dec 2021 22:27:51 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>54324c2f - PCI/MSI: Split out CONFIG_PCI_MSI independent part</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#54324c2f</link>
        <description>PCI/MSI: Split out CONFIG_PCI_MSI independent partThese functions are required even when CONFIG_PCI_MSI is not set. Move themto their own file.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Tested-by: Juergen Gross &lt;jgross@suse.com&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20211206210224.710137730@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Mon, 06 Dec 2021 22:27:49 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>288c81ce - PCI/MSI: Move code into a separate directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/pci/msi/Makefile#288c81ce</link>
        <description>PCI/MSI: Move code into a separate directorymsi.c is getting larger and really could do with a splitup. Move it intoits own directory to prepare for that.Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Tested-by: Juergen Gross &lt;jgross@suse.com&gt;Reviewed-by: Jason Gunthorpe &lt;jgg@nvidia.com&gt;Acked-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Link: https://lore.kernel.org/r/20211206210224.655043033@linutronix.de

            List of files:
            /linux-6.15/drivers/pci/msi/Makefile</description>
        <pubDate>Mon, 06 Dec 2021 22:27:47 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
