Hi all, Today's linux-next merge of the net-next tree got a conflict in drivers/net/ethernet/qualcomm/qca_spi.c between commit 268be0f7a7d9 ("net: qca_spi: Fix possible race during probe") from the net tree and commit cf9d0dcc5a46 ("ethernet: qualcomm: use spi instead of spi_device") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc drivers/net/ethernet/qualcomm/qca_spi.c index 6af028d5f9bc,c6b749880e46..000000000000 --- a/drivers/net/ethernet/qualcomm/qca_spi.c +++ b/drivers/net/ethernet/qualcomm/qca_spi.c @@@ -909,12 -909,10 +909,12 @@@ qca_spi_probe(struct spi_device *spi return -ENOMEM; } qca->net_dev = qcaspi_devs; - qca->spi_dev = spi_device; + qca->spi_dev = spi; qca->legacy_mode = legacy_mode; - spi_set_drvdata(spi_device, qcaspi_devs); ++ spi_set_drvdata(spi, qcaspi_devs); + - mac = of_get_mac_address(spi_device->dev.of_node); + mac = of_get_mac_address(spi->dev.of_node); if (mac) ether_addr_copy(qca->net_dev->dev_addr, mac);