Revert "k1:emac: enable async suspend"

we can't put the emac suspend callback into the suspend_noirq process
which need irq enabled

This reverts commit 6901b9e2db.

Change-Id: Iefceb2aad7d4b3286eb219601c46a9943de719d2
This commit is contained in:
Nell
2025-03-22 12:48:00 +08:00
committed by 张猛
parent 0e2cbf39d1
commit 2018056833

View File

@@ -2837,7 +2837,6 @@ static int emac_probe(struct platform_device *pdev)
}
dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
device_enable_async_suspend(&pdev->dev);
netif_napi_add(ndev, &priv->napi, emac_rx_poll);
return 0;
@@ -2944,7 +2943,7 @@ static int emac_suspend(struct device *dev)
#endif
static const struct dev_pm_ops k1x_emac_pm_qos = {
NOIRQ_SYSTEM_SLEEP_PM_OPS(emac_suspend, emac_resume)
SET_SYSTEM_SLEEP_PM_OPS(emac_suspend, emac_resume)
};
static const struct of_device_id emac_of_match[] = {