Skip to content

Commit 1c5e917

Browse files
committed
bus: tegra-gmi: Replace of_platform.h with explicit includes
Tegra-gmi doesn't use anything from of_platform.h, but depends on of.h, of_device.h, and platform_device.h which are all implicitly included, but that is going to be removed soon. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Rob Herring <[email protected]>
1 parent 3714c8d commit 1c5e917

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/bus/tegra-gmi.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
#include <linux/delay.h>
1010
#include <linux/io.h>
1111
#include <linux/module.h>
12-
#include <linux/of_device.h>
12+
#include <linux/of.h>
13+
#include <linux/of_platform.h>
14+
#include <linux/platform_device.h>
1315
#include <linux/pm_runtime.h>
1416
#include <linux/reset.h>
1517

0 commit comments

Comments
 (0)