Re: [PATCH V2 00/24] [media] use IS_ENABLED() macro

2013-01-19 Thread Nikola Pajkovsky
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 >

[PATCH V2 00/24] [media] use IS_ENABLED() macro

2013-01-19 Thread Peter Senna Tschudin
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