Messages in this thread Patch in this message |  | | From | Christophe Leroy <> | Subject | [PATCH net-next] sungem: Prepare cleanup of powerpc's asm/prom.h | Date | Sat, 2 Apr 2022 12:17:13 +0200 |
| |
powerpc's asm/prom.h brings some headers that it doesn't need itself.
In order to clean it up, first add missing headers in users of asm/prom.h
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> --- drivers/net/sungem_phy.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/net/sungem_phy.c b/drivers/net/sungem_phy.c index 4daac5fda073..ff22b6b1c686 100644 --- a/drivers/net/sungem_phy.c +++ b/drivers/net/sungem_phy.c @@ -29,11 +29,7 @@ #include <linux/mii.h> #include <linux/ethtool.h> #include <linux/delay.h> - -#ifdef CONFIG_PPC_PMAC -#include <asm/prom.h> -#endif - +#include <linux/of.h> #include <linux/sungem_phy.h> /* Link modes of the BCM5400 PHY */ -- 2.35.1
|  |