Re: [PATCH] ivtv: Fix build warning

2012-03-06 Thread Danny Kukawka
Am 04.03.2012 19:25, schrieb Larry Finger: > In driver ivtv, there is a mismatch between the type of the radio module > parameter > and the storage variable, which leads to the following warning: > > CC [M] drivers/media/video/ivtv/ivtv-driver.o > drivers/media/video/ivtv/ivtv-driver.c: In fun

Re: [PATCH 00/12] Part 2: check given MAC address, if invalid return -EADDRNOTAVAIL

2012-02-28 Thread Danny Kukawka
On Samstag, 25. Februar 2012, Geert Uytterhoeven wrote: > 2012/2/24 Michał Mirosław : > > 2012/2/24 Danny Kukawka : > >> Second Part of series patches to unifiy the return value of > >> .ndo_set_mac_address if the given address isn't valid. > >> > >&g

[PATCH 03/12] dvb_net: check given MAC address, if invalid return -EADDRNOTAVAIL

2012-02-24 Thread Danny Kukawka
Check if given address is valid in .ndo_set_mac_address, if invalid return -EADDRNOTAVAIL as eth_mac_addr() already does if is_valid_ether_addr() fails. Signed-off-by: Danny Kukawka --- drivers/media/dvb/dvb-core/dvb_net.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff

[PATCH 00/12] Part 2: check given MAC address, if invalid return -EADDRNOTAVAIL

2012-02-24 Thread Danny Kukawka
fails. These patches are against net-next. Danny Kukawka (12): ethernet: .ndo_set_mac_address: check given address, if invalid return -EADDRNOTAVAIL cris/eth_v10: check given MAC address, if invalid return -EADDRNOTAVAIL dvb_net: check given MAC address, if invalid return -EADDRNOTAVAIL

[RESEND][PATCH v2 1/2] cx18-driver: fix handling of 'radio' module parameter

2012-02-22 Thread Danny Kukawka
: initialization from incompatible pointer type [enabled by default] 113:1: warning: (near initialization for ‘__param_arr_radio.num’) [enabled by default] v2: corrected version, don't change to module_param_named(), change all to int/uint Signed-off-by: Danny Kukawka --- drivers/media/video

[RESEND][PATCH v2 0/2] fix cx18-/ivtv-driver 'radio' module parameter

2012-02-22 Thread Danny Kukawka
Updated patch versions to fix the 'radio' module parameter of cx18-driver and ivtv-driver. Please add to 3.3. Danny Kukawka (2): cx18-driver: fix handling of 'radio' module parameter ivtv-driver: fix handling of 'radio' module parameter drivers/media/v

[RESEND][PATCH v2 2/2] ivtv-driver: fix handling of 'radio' module parameter

2012-02-22 Thread Danny Kukawka
nt Signed-off-by: Danny Kukawka --- drivers/media/video/ivtv/ivtv-driver.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index 107e9e6..ab6ed116 100644 --- a/drivers/media/video/ivtv/ivt

[PATCH] mt9p031.c included media/v4l2-subdev.h twice

2012-02-15 Thread Danny Kukawka
drivers/media/video/mt9p031.c included 'media/v4l2-subdev.h' twice, remove the duplicate. Signed-off-by: Danny Kukawka --- drivers/media/video/mt9p031.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/mt9p031.c b/drivers/media/video/mt9p0

[PATCH] adp1653: included linux/module.h twice

2012-02-15 Thread Danny Kukawka
drivers/media/video/adp1653.c included 'linux/module.h' twice, remove the duplicate. Signed-off-by: Danny Kukawka --- drivers/media/video/adp1653.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/adp1653.c b/drivers/media/video/adp16

[PATCH] mt2063: remove mt2063_setTune from header

2012-02-10 Thread Danny Kukawka
Commit 99ac54125490f16f7434f82fcb73bbb88290b38e removed the function mt2063_setTune() from mt2063.c. Remove it also from the header file. Signed-off-by: Danny Kukawka --- drivers/media/common/tuners/mt2063.h |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/drivers

[PATCH v2 0/2] fix cx18-/ivtv-driver 'radio' module parameter

2012-01-31 Thread Danny Kukawka
Updated patch versions to fix the 'radio' module parameter of cx18-driver and ivtv-driver. Danny Kukawka (2): cx18-driver: fix handling of 'radio' module parameter ivtv-driver: fix handling of 'radio' module parameter drivers/media/video/cx18/cx18-driver.c |

[PATCH v2 1/2] cx18-driver: fix handling of 'radio' module parameter

2012-01-31 Thread Danny Kukawka
: initialization from incompatible pointer type [enabled by default] 113:1: warning: (near initialization for ‘__param_arr_radio.num’) [enabled by default] v2: corrected version, don't change to module_param_named(), change all to int/uint Signed-off-by: Danny Kukawka --- drivers/media/video

[PATCH v3 2/2] ivtv-driver: fix handling of 'radio' module parameter

2012-01-31 Thread Danny Kukawka
nt Signed-off-by: Danny Kukawka --- drivers/media/video/ivtv/ivtv-driver.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index 3949b7d..06192ae 100644 --- a/drivers/media/video/ivtv/ivt

Re: [PATCH v2 08/16] ivtv-driver: fix handling of 'radio' module parameter

2012-01-31 Thread Danny Kukawka
On Dienstag, 31. Januar 2012, Andy Walls wrote: > On Mon, 2012-01-30 at 20:40 +0100, Danny Kukawka wrote: > > Fixed handling of 'radio' module parameter from module_param_array > > to module_param_named to fix these compiler warnings in ivtv-driver.c: > > > > I

Re: [PATCH 05/16] cx18: fix handling of 'radio' module parameter

2012-01-31 Thread Danny Kukawka
On Dienstag, 31. Januar 2012, Andy Walls wrote: > On Tue, 2012-01-31 at 05:01 -0500, Andy Walls wrote: > > On Mon, 2012-01-30 at 20:40 +0100, Danny Kukawka wrote: > > > Fixed handling of 'radio' module parameter from module_param_array > > > to module_param_na

[PATCH 05/16] cx18: fix handling of 'radio' module parameter

2012-01-30 Thread Danny Kukawka
ation from incompatible pointer type [enabled by default] 113:1: warning: (near initialization for ‘__param_arr_radio.num’) [enabled by default] Signed-off-by: Danny Kukawka --- drivers/media/video/cx18/cx18-driver.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/m

[PATCH v2 02/16] max2165: trival fix for some -Wuninitialized warning

2012-01-30 Thread Danny Kukawka
Fix for some -Wuninitialized compiler warnings. Signed-off-by: Danny Kukawka --- drivers/media/common/tuners/max2165.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/media/common/tuners/max2165.c b/drivers/media/common/tuners/max2165.c index cb2c98f