diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2022-07-27 15:03:52 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2022-07-28 16:22:12 +1000 |
commit | 4177ab2283dcd98735572ebda56b9d479dc1d7f2 (patch) | |
tree | 6d354ffea3a9a6b3d618309da304ef99e1b7d157 /drivers/edac | |
parent | 61657dcd528b75cd196adaf56890124c13953c8d (diff) | |
download | linux-4177ab2283dcd98735572ebda56b9d479dc1d7f2.tar.bz2 |
EDAC/mpc85xx: Include required of headers directly
A subsequent commit to cleanup powerpc's asm/prom.h leads to build
errors in mpc85xx_edac.c due to missing headers. Include all required
headers directly to avoid the build failure.
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/mpc85xx_edac.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c index 5bf92298554d..e50d7928bf8f 100644 --- a/drivers/edac/mpc85xx_edac.c +++ b/drivers/edac/mpc85xx_edac.c @@ -24,6 +24,8 @@ #include <linux/of_platform.h> #include <linux/of_device.h> +#include <linux/of_address.h> +#include <linux/of_irq.h> #include "edac_module.h" #include "mpc85xx_edac.h" #include "fsl_ddr_edac.h" |