mirror of https://gitee.com/openkylin/linux.git
mmc: cb710: drop free_irq for devm_request_irq allocated irq
irq allocated with devm_request_irq should not be freed using free_irq, because doing so causes a dangling pointer, and a subsequent double free. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8d49751580
commit
0a335b6d47
|
@ -176,7 +176,7 @@ static int cb710_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||||
{
|
{
|
||||||
struct cb710_chip *chip = pci_get_drvdata(pdev);
|
struct cb710_chip *chip = pci_get_drvdata(pdev);
|
||||||
|
|
||||||
free_irq(pdev->irq, chip);
|
devm_free_irq(&pdev->dev, pdev->irq, chip);
|
||||||
pci_save_state(pdev);
|
pci_save_state(pdev);
|
||||||
pci_disable_device(pdev);
|
pci_disable_device(pdev);
|
||||||
if (state.event & PM_EVENT_SLEEP)
|
if (state.event & PM_EVENT_SLEEP)
|
||||||
|
|
Loading…
Reference in New Issue