Hi all, Today's linux-next merge of the net-next tree got a conflict in: drivers/net/can/flexcan.c between commit: e9f2a856e102 ("can: flexcan: fix an use-after-free in flexcan_setup_stop_mode()") from the net tree and commit: 915f9666421c ("can: flexcan: add support for DT property 'wakeup-source'") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc drivers/net/can/flexcan.c index fcec8bcb53d6,09d8e623dcf6..000000000000 --- a/drivers/net/can/flexcan.c +++ b/drivers/net/can/flexcan.c @@@ -1473,9 -1473,10 +1491,12 @@@ static int flexcan_setup_stop_mode(stru device_set_wakeup_capable(&pdev->dev, true); + if (of_property_read_bool(np, "wakeup-source")) + device_set_wakeup_enable(&pdev->dev, true); + - return 0; +out_put_node: + of_node_put(gpr_np); + return ret; } static const struct of_device_id flexcan_of_match[] = {