Peter Senna Tschudin writes:
> This patch series introduce the use of IS_ENABLED() macro.
> For example replace:
> #if defined(CONFIG_VIDEO_CX88_DVB) || \
> defined(CONFIG_VIDEO_CX88_DVB_MODULE)
> with:
> #if IS_ENABLED(CONFIG_VIDEO_CX88_DVB)
>
> Changes from V1:
>Updated subject
>
This patch series introduce the use of IS_ENABLED() macro.
For example replace:
#if defined(CONFIG_VIDEO_CX88_DVB) || \
defined(CONFIG_VIDEO_CX88_DVB_MODULE)
with:
#if IS_ENABLED(CONFIG_VIDEO_CX88_DVB)
Changes from V1:
Updated subject
Fixed commit message of patch 15/24
Fixed commi