This is a note to let you know that I've just added the patch titled net: phy: aquantia: add missing include guards to the 6.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-phy-aquantia-add-missing-include-guards.patch and it can be found in the queue-6.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit b2df1bbbe055ad1373dc9976ce7b76b321543d34 Author: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> Date: Mon Jul 1 10:03:22 2024 +0200 net: phy: aquantia: add missing include guards [ Upstream commit 219343755eae6536d1fcb9184e6253ade4906aac ] The header is missing the include guards so add them. Reviewed-by: Andrew Lunn <andrew@xxxxxxx> Fixes: fb470f70fea7 ("net: phy: aquantia: add hwmon support") Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> Link: https://patch.msgid.link/20240701080322.9569-1-brgl@xxxxxxxx Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/net/phy/aquantia/aquantia.h b/drivers/net/phy/aquantia/aquantia.h index 1c19ae74ad2b4..4830b25e6c7d3 100644 --- a/drivers/net/phy/aquantia/aquantia.h +++ b/drivers/net/phy/aquantia/aquantia.h @@ -6,6 +6,9 @@ * Author: Heiner Kallweit <hkallweit1@xxxxxxxxx> */ +#ifndef AQUANTIA_H +#define AQUANTIA_H + #include <linux/device.h> #include <linux/phy.h> @@ -120,3 +123,5 @@ static inline int aqr_hwmon_probe(struct phy_device *phydev) { return 0; } #endif int aqr_firmware_load(struct phy_device *phydev); + +#endif /* AQUANTIA_H */