From: Hans Verkuil Date: Thu, 8 Jun 2017 18:37:44 +0000 (-0300) Subject: [media] media/cec.h: use IS_REACHABLE instead of IS_ENABLED X-Git-Tag: v5.15~11134^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9f314f323951a33d8b4a4f63f7d04b7f3bc0603;p=platform%2Fkernel%2Flinux-starfive.git [media] media/cec.h: use IS_REACHABLE instead of IS_ENABLED Fix messages like this: adv7842.c:(.text+0x2edadd): undefined reference to `cec_unregister_adapter' when CEC_CORE=m but the driver including media/cec.h is built-in. In that case the static inlines provided in media/cec.h should be used by that driver. Reported-by: Randy Dunlap Reported-by: kbuild test robot Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/include/media/cec.h b/include/media/cec.h index bfa88d4..201f060 100644 --- a/include/media/cec.h +++ b/include/media/cec.h @@ -206,7 +206,7 @@ static inline bool cec_is_sink(const struct cec_adapter *adap) #define cec_phys_addr_exp(pa) \ ((pa) >> 12), ((pa) >> 8) & 0xf, ((pa) >> 4) & 0xf, (pa) & 0xf -#if IS_ENABLED(CONFIG_CEC_CORE) +#if IS_REACHABLE(CONFIG_CEC_CORE) struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops, void *priv, const char *name, u32 caps, u8 available_las); int cec_register_adapter(struct cec_adapter *adap, struct device *parent);