Re: [PATCH v2] PCI: v3: fix missing clk_disable_unprepare() on error in v3_pci_probe

2020-11-05 Thread Qinglang Miao
在 2020/11/3 22:16, Rob Herring 写道: On Tue, Nov 3, 2020 at 1:28 AM Qinglang Miao wrote: Fix the missing clk_disable_unprepare() before return from v3_pci_probe() in the error handling case. Moving the clock enable later to avoid some fixes. Fixes: 6e0832fa432e (" PCI: Collect all native dr

Re: [PATCH v2] PCI: v3: fix missing clk_disable_unprepare() on error in v3_pci_probe

2020-11-05 Thread Qinglang Miao
在 2020/11/3 22:16, Rob Herring 写道: On Tue, Nov 3, 2020 at 1:28 AM Qinglang Miao wrote: Fix the missing clk_disable_unprepare() before return from v3_pci_probe() in the error handling case. Moving the clock enable later to avoid some fixes. Fixes: 6e0832fa432e (" PCI: Collect all native dr

Re: [PATCH v2] PCI: v3: fix missing clk_disable_unprepare() on error in v3_pci_probe

2020-11-03 Thread Rob Herring
On Tue, Nov 3, 2020 at 1:28 AM Qinglang Miao wrote: > > Fix the missing clk_disable_unprepare() before return > from v3_pci_probe() in the error handling case. > > Moving the clock enable later to avoid some fixes. > > Fixes: 6e0832fa432e (" PCI: Collect all native drivers under > drivers/pci/con

[PATCH v2] PCI: v3: fix missing clk_disable_unprepare() on error in v3_pci_probe

2020-11-02 Thread Qinglang Miao
Fix the missing clk_disable_unprepare() before return from v3_pci_probe() in the error handling case. Moving the clock enable later to avoid some fixes. Fixes: 6e0832fa432e (" PCI: Collect all native drivers under drivers/pci/controller/") Suggested-by: Rob Herring Signed-off-by: Qinglang Miao