Skip to content

Commit 80738c3

Browse files
andy-shevvinodkoul
authored andcommitted
phy: HiSilicon: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use) principle. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20241031104401.2454179-1-andriy.shevchenko@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
1 parent 0d9fff6 commit 80738c3

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

drivers/phy/hisilicon/phy-hi3670-pcie.c

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,20 @@
1616
*/
1717

1818
#include <linux/bitfield.h>
19+
#include <linux/bits.h>
1920
#include <linux/clk.h>
20-
#include <linux/gpio.h>
21-
#include <linux/kernel.h>
21+
#include <linux/delay.h>
22+
#include <linux/device.h>
23+
#include <linux/err.h>
24+
#include <linux/io.h>
2225
#include <linux/mfd/syscon.h>
26+
#include <linux/mod_devicetable.h>
2327
#include <linux/module.h>
24-
#include <linux/of_gpio.h>
28+
#include <linux/of.h>
2529
#include <linux/phy/phy.h>
2630
#include <linux/platform_device.h>
2731
#include <linux/regmap.h>
32+
#include <linux/types.h>
2833

2934
#define AXI_CLK_FREQ 207500000
3035
#define REF_CLK_FREQ 100000000

0 commit comments

Comments
 (0)