Re: [PATCH 1/2] net: qcom/emac: do not use devm on internal phy pdev

2016-09-27 Thread David Miller
This patch doesn't apply to net-next. Also, when you send a patch series, you must send an initial posting with Subject of the form "[PATCH {net,net-next} 0/2] ..." explaining at a high level what your patch series is doing, how it is doing it, and why it is doing it that way. Thanks.

[PATCH 1/2] net: qcom/emac: do not use devm on internal phy pdev

2016-09-23 Thread Timur Tabi
The platform_device returned by of_find_device_by_node() is not automatically released when the driver unprobes. Therefore, managed calls like devm_ioremap_resource() should not be used. Instead, we manually allocate the resources and then free them on driver release. Signed-off-by: Timur Tabi -