From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:55990 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750899AbdKFJMc (ORCPT ); Mon, 6 Nov 2017 04:12:32 -0500 Subject: Patch "net: mvneta: fix build errors when linux/phy*.h is removed from net/dsa.h" has been added to the 4.9-stable tree To: rmk+kernel@armlinux.org.uk, alexander.levin@verizon.com, davem@davemloft.net, gregkh@linuxfoundation.org, thomas.petazzoni@free-electrons.com Cc: , From: Date: Mon, 06 Nov 2017 10:11:43 +0100 Message-ID: <1509959503237227@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: 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 know about it. >>From foo@baz Mon Nov 6 10:07:35 CET 2017 From: Russell King 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 [ 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 Acked-by: Thomas Petazzoni Signed-off-by: David S. Miller Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- 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 #include #include +#include #include #include #include Patches currently in stable-queue which might be from rmk+kernel@armlinux.org.uk 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