Message ID | 20230719155707.1948698-1-Frank.Li@nxp.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Krzysztof Wilczyński |
Headers | show |
Series | [v3,1/2] PCI: layerscape: Add support for Link down notification | expand |
On Wed, Jul 19, 2023 at 09:27:23PM +0200, Markus Elfring wrote: > > Add support to pass … > > Why did you omit a cover letter for the discussed patch series once more? Your comments is "Will a cover letter become helpful also for the presented small patch series?" According to my understand it is optional. I don't think cover letter will help this case. Patch 1 and 2 is that independent at all. I sent these together just because easy to test once. Maintainer can pick any one individually. Cover letter just annoise people here. Frank > > Do you care for consequences according to message threading? > > Regards, > Markus
On Wed, Jul 19, 2023 at 10:08:16PM +0200, Markus Elfring wrote: > > Cover letter just annoise people here. > > How do you think about advices from another information source? > > See also: > https://kernelnewbies.org/PatchSeries "You may like to include a cover letter with your patch series." Generally, I think cover letter will be needed only if it really help reviewer to get main idea about patches. Such as my on going pathes(with cover letter): https://lore.kernel.org/imx/ZLglBiSz0meJm5os@lizhi-Precision-Tower-5810/T/#t Similar case without(cover leter) and accepted. https://lore.kernel.org/imx/20230719063425.GE151430@dragon/T/#t I don't think cover letter real help reviewer to review these two patches. I more like to get "real problem"(such as comments about "typo"). It is just waste time to discuss if need add cover letter here. Frank > > Regards, > Markus
diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c index de4c1758a6c3..e0969ff2ddf7 100644 --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c @@ -89,6 +89,7 @@ static irqreturn_t ls_pcie_ep_event_handler(int irq, void *dev_id) dev_dbg(pci->dev, "Link up\n"); } else if (val & PEX_PF0_PME_MES_DR_LDD) { dev_dbg(pci->dev, "Link down\n"); + pci_epc_linkdown(pci->ep.epc); } else if (val & PEX_PF0_PME_MES_DR_HRD) { dev_dbg(pci->dev, "Hot reset\n"); }