This is a note to let you know that I've just added the patch titled net: mvneta: fix build errors when linux/phy*.h is removed from net/dsa.h to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: net-mvneta-fix-build-errors-when-linux-phy-.h-is-removed-from-net-dsa.h.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From foo@baz Mon Nov 6 10:07:35 CET 2017 From: Russell King <rmk+kernel@xxxxxxxxxxxxxxx> Date: Sat, 7 Oct 2017 22:36:49 +0000 Subject: net: mvneta: fix build errors when linux/phy*.h is removed from net/dsa.h From: Russell King <rmk+kernel@xxxxxxxxxxxxxxx> [ Upstream commit 9303ab2b3402b60f6c39abfdbfa4ce00fce8bee4 ] drivers/net/ethernet/marvell/mvneta.c:2694:26: error: storage size of 'status' isn't known drivers/net/ethernet/marvell/mvneta.c:2695:26: error: storage size of 'changed' isn't known drivers/net/ethernet/marvell/mvneta.c:2695:9: error: variable 'changed' has initializer but incomplete type drivers/net/ethernet/marvell/mvneta.c:2709:2: error: implicit declaration of function 'fixed_phy_update_state' [-Werror=implicit-function-declaration] Add linux/phy_fixed.h to mvneta.c Signed-off-by: Russell King <rmk+kernel@xxxxxxxxxxxxxxx> Acked-by: Thomas Petazzoni <thomas.petazzoni@xxxxxxxxxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Sasha Levin <alexander.levin@xxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/marvell/mvneta.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -28,6 +28,7 @@ #include <linux/of_mdio.h> #include <linux/of_net.h> #include <linux/phy.h> +#include <linux/phy_fixed.h> #include <linux/platform_device.h> #include <linux/skbuff.h> #include <net/hwbm.h> Patches currently in stable-queue which might be from rmk+kernel@xxxxxxxxxxxxxxx are queue-4.9/arm-8715-1-add-a-private-asm-unaligned.h.patch queue-4.9/net-mvneta-fix-build-errors-when-linux-phy-.h-is-removed-from-net-dsa.h.patch