diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-06-19 11:23:53 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-06-20 20:44:38 -0700 |
commit | ee8dacca2fd3ff437b787f83fb569197a89894fd (patch) | |
tree | 72ec44da9614b9cc9e433d570902366342b65547 /drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c | |
parent | 302555a0ae3362b38eddd1df9b8d4b176050fc92 (diff) |
net: stmmac: dwmac-qcom-ethqos: add missing include
device_get_phy_mode() is declared in linux/property.h but this header
is not included.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c index f0776ddea3ab..b66d64d138cb 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c @@ -6,6 +6,7 @@ #include <linux/of_device.h> #include <linux/platform_device.h> #include <linux/phy.h> +#include <linux/property.h> #include "stmmac.h" #include "stmmac_platform.h" |