From: Rob Herring Date: Wed, 5 Apr 2023 20:27:23 +0000 (-0500) Subject: fpga: lattice-sysconfig-spi: Add explicit include for of.h X-Git-Tag: v6.4-rc1~149^2~1^4~1 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2febc5dda35e519886140e62780211a10ebeb463;p=tomoyo%2Ftomoyo-test1.git fpga: lattice-sysconfig-spi: Add explicit include for of.h With linux/acpi.h (in spi/spi.h) no longer implicitly including of.h, add an explicit include of of.h to fix the following errors: drivers/fpga/lattice-sysconfig-spi.c:146:35: error: implicit declaration of function 'of_match_ptr' [-Werror=implicit-function-declaration] Reported-by: Stephen Rothwell Signed-off-by: Rob Herring Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/fpga/lattice-sysconfig-spi.c b/drivers/fpga/lattice-sysconfig-spi.c index 2702b26b7f55..44691cfcf50a 100644 --- a/drivers/fpga/lattice-sysconfig-spi.c +++ b/drivers/fpga/lattice-sysconfig-spi.c @@ -3,6 +3,7 @@ * Lattice FPGA programming over slave SPI sysCONFIG interface. */ +#include #include #include "lattice-sysconfig.h"