diff --git a/Makefile b/Makefile index 7a529bc6..73848b16 100644 --- a/Makefile +++ b/Makefile @@ -66,6 +66,9 @@ subdir-ccflags-y += -DNV_UNEXPORT_FD_HANDLE_CONVERSION # FB Deferred IO helpers name alignment subdir-ccflags-y += -DNV_FB_DEFERRED_IO_OPS_RENAME +# Drop the API for pcie_disable_pcie_error_reporting +subdir-ccflags-y += -DNV_PCIE_DIABLE_PCIE_ERROR_REPORTING_DROP + # Crypto driver has major change in it ops, skip it export CONFIG_SKIP_CRYPTO=y endif diff --git a/drivers/misc/nvscic2c-pcie/epc/module.c b/drivers/misc/nvscic2c-pcie/epc/module.c index a6ebe630..bd273f25 100644 --- a/drivers/misc/nvscic2c-pcie/epc/module.c +++ b/drivers/misc/nvscic2c-pcie/epc/module.c @@ -290,7 +290,9 @@ deinit: pci_release_region(pdev, 0); pci_clear_master(pdev); +#if !defined(NV_PCIE_DIABLE_PCIE_ERROR_REPORTING_DROP) pci_disable_pcie_error_reporting(pdev); +#endif pci_disable_device(pdev); dt_release(&drv_ctx->drv_param);