mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Initial backport of at803x PHY driver cleanup. This is in preparation for split and addition of new PHY Family based on at803x needed for ipq807x and other IPQ Series SoC. Other affected patch are automatically refreshed with make target/linux/refresh Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From a593a2fcfdfb92cfd0ffc54bc81b07e6bfaaaf46 Mon Sep 17 00:00:00 2001
 | 
						|
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 | 
						|
Date: Thu, 16 Mar 2023 14:08:26 +0200
 | 
						|
Subject: [PATCH] net: phy: at803x: Replace of_gpio.h with what indeed is used
 | 
						|
 | 
						|
of_gpio.h in this driver is solely used as a proxy to other headers.
 | 
						|
This is incorrect usage of the of_gpio.h. Replace it .h with what
 | 
						|
indeed is used in the code.
 | 
						|
 | 
						|
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 | 
						|
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
 | 
						|
Signed-off-by: David S. Miller <davem@davemloft.net>
 | 
						|
---
 | 
						|
 drivers/net/phy/at803x.c | 3 +--
 | 
						|
 1 file changed, 1 insertion(+), 2 deletions(-)
 | 
						|
 | 
						|
--- a/drivers/net/phy/at803x.c
 | 
						|
+++ b/drivers/net/phy/at803x.c
 | 
						|
@@ -13,12 +13,11 @@
 | 
						|
 #include <linux/netdevice.h>
 | 
						|
 #include <linux/etherdevice.h>
 | 
						|
 #include <linux/ethtool_netlink.h>
 | 
						|
-#include <linux/of_gpio.h>
 | 
						|
 #include <linux/bitfield.h>
 | 
						|
-#include <linux/gpio/consumer.h>
 | 
						|
 #include <linux/regulator/of_regulator.h>
 | 
						|
 #include <linux/regulator/driver.h>
 | 
						|
 #include <linux/regulator/consumer.h>
 | 
						|
+#include <linux/of.h>
 | 
						|
 #include <linux/phylink.h>
 | 
						|
 #include <linux/sfp.h>
 | 
						|
 #include <dt-bindings/net/qca-ar803x.h>
 |