Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-24 Thread Mauro Carvalho Chehab
Em Tue, 22 Jan 2013 10:52:08 +0100 Hans de Goede escreveu: > Hi, > > On 01/21/2013 01:51 PM, Peter Senna Tschudin wrote: > > On Mon, Jan 21, 2013 at 10:47 AM, Hans de Goede wrote: > >> Hi, > >> > >> Thanks for the patches I'll pick up 5 - 21 and add them to > >> my tree for Mauro. > > I have se

Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-22 Thread Hans de Goede
Hi, On 01/21/2013 01:51 PM, Peter Senna Tschudin wrote: On Mon, Jan 21, 2013 at 10:47 AM, Hans de Goede wrote: Hi, Thanks for the patches I'll pick up 5 - 21 and add them to my tree for Mauro. I have sent V2 of this patches with another subject and with fixed commit message for two patches.

Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-21 Thread Jonathan Nieder
Hans de Goede wrote: > Thanks for the patches I'll pick up 5 - 21 and add them to > my tree for Mauro. Ack on patch 1, BTW. Thanks, Jonathan -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at htt

Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-21 Thread Peter Senna Tschudin
On Mon, Jan 21, 2013 at 10:47 AM, Hans de Goede wrote: > Hi, > > Thanks for the patches I'll pick up 5 - 21 and add them to > my tree for Mauro. I have sent V2 of this patches with another subject and with fixed commit message for two patches. > > Regards, > > Hans > > > > On 01/19/2013 05:33 PM,

Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-21 Thread Hans de Goede
Hi, Thanks for the patches I'll pick up 5 - 21 and add them to my tree for Mauro. Regards, Hans On 01/19/2013 05:33 PM, Peter Senna Tschudin wrote: replace: #if defined(CONFIG_VIDEO_CX88_DVB) || \ defined(CONFIG_VIDEO_CX88_DVB_MODULE) with: #if IS_ENABLED(CONFIG_VIDEO_CX88_DVB) Th

Re: [PATCH 01/24] use IS_ENABLED() macro

2013-01-19 Thread Nikola Pajkovsky
Peter Senna Tschudin writes: > replace: > #if defined(CONFIG_VIDEO_CX88_DVB) || \ > defined(CONFIG_VIDEO_CX88_DVB_MODULE) > with: > #if IS_ENABLED(CONFIG_VIDEO_CX88_DVB) > > This change was made for: CONFIG_VIDEO_CX88_DVB, > CONFIG_VIDEO_CX88_BLACKBIRD, CONFIG_VIDEO_CX88_VP3054 > > Reporte

[PATCH 01/24] use IS_ENABLED() macro

2013-01-19 Thread Peter Senna Tschudin
replace: #if defined(CONFIG_VIDEO_CX88_DVB) || \ defined(CONFIG_VIDEO_CX88_DVB_MODULE) with: #if IS_ENABLED(CONFIG_VIDEO_CX88_DVB) This change was made for: CONFIG_VIDEO_CX88_DVB, CONFIG_VIDEO_CX88_BLACKBIRD, CONFIG_VIDEO_CX88_VP3054 Reported-by: Mauro Carvalho Chehab Signed-off-by: Peter