From: Dan Murphy Date: Thu, 23 Jul 2020 12:01:38 +0000 (-0500) Subject: dm: Fix build error when OF_CONTROL is not set X-Git-Tag: v2020.10~79^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1351e3eb724d709f13ef5a5e3be7472e242dc6b4;p=platform%2Fkernel%2Fu-boot.git dm: Fix build error when OF_CONTROL is not set With OF_CONTROL disabled the build fails for include/dm/read.h:932:10: error: ‘ENOTSUPP’ undeclared (first use in this function) 932 | return -ENOTSUPP; Fixes: 45224e8f2691 ("dm: core: gracefully handle alias seq without of") Signed-off-by: Dan Murphy --- diff --git a/include/dm/read.h b/include/dm/read.h index f02ec95..b1a6108 100644 --- a/include/dm/read.h +++ b/include/dm/read.h @@ -9,6 +9,8 @@ #ifndef _DM_READ_H #define _DM_READ_H +#include + #include #include #include