From: Krzysztof Kozlowski Date: Fri, 24 Jul 2020 07:40:12 +0000 (+0200) Subject: memory: omap-gpmc: Include for SZ_16M X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=07852c3f7f87191e6b293fac6651885aa230e642;p=linux.git memory: omap-gpmc: Include for SZ_16M The driver uses SZ_16M which is defined in include/linux/sizes.h. On ARM it was pulled by other headers but its inclusion is necessary for compile testing on other architectures. This fixes build error when compile testing on i386 architecture: drivers/memory/omap-gpmc.c: In function ‘gpmc_cs_remap’: drivers/memory/omap-gpmc.c:961:12: error: ‘SZ_16M’ undeclared (first use in this function) Signed-off-by: Krzysztof Kozlowski --- diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c index eff26c1b13940..a4843d397c0fa 100644 --- a/drivers/memory/omap-gpmc.c +++ b/drivers/memory/omap-gpmc.c @@ -29,6 +29,7 @@ #include #include #include +#include #include