Explorar o código

spi: topcliff-pch: fix error return code in pch_spi_probe()

Fix to return -ENOMEM in the platform_device_alloc() error handling
case instead of 0, as done elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Wei Yongjun %!s(int64=12) %!d(string=hai) anos
pai
achega
bac902d505
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      drivers/spi/spi-topcliff-pch.c

+ 1 - 0
drivers/spi/spi-topcliff-pch.c

@@ -1667,6 +1667,7 @@ static int pch_spi_probe(struct pci_dev *pdev,
 		pd_dev = platform_device_alloc("pch-spi", i);
 		pd_dev = platform_device_alloc("pch-spi", i);
 		if (!pd_dev) {
 		if (!pd_dev) {
 			dev_err(&pdev->dev, "platform_device_alloc failed\n");
 			dev_err(&pdev->dev, "platform_device_alloc failed\n");
+			retval = -ENOMEM;
 			goto err_platform_device;
 			goto err_platform_device;
 		}
 		}
 		pd_dev_save->pd_save[i] = pd_dev;
 		pd_dev_save->pd_save[i] = pd_dev;