[PATCH] drivers/media/video/tveeprom.c: use %pM to show MAC address

2009-12-30 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com --- diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index d533ea5..0a87749 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video

[PATCH] drivers/media/video/cx23885/cx23885-dvb.c: use %pM to show MAC address

2009-12-30 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Steven Toth st...@kernellabs.com --- diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c index e45d2df..f9243de 100644

[PATCH] drivers/media/dvb/dvb-core/dvb_net.c: use %pM to show MAC address

2009-12-30 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address and mask. The only difference in the output is that the output is shown in the usual colon-separated hex notation. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: David S. Miller da...@davemloft.net --- diff --git

[PATCH] media: videobuf2-dma-contig: include header for exported symbols

2012-04-24 Thread H Hartley Sweeten
'vb2_dma_contig_cleanup_ctx' was not declared. Should it be static? Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Pawel Osciak pa...@osciak.com Cc: Marek Szyprowski m.szyprow...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Mauro Carvalho Chehab mche...@infradead.org

[PATCH] media: videobuf2-dma-contig: quiet sparse noise about plain integer as NULL pointer

2012-04-24 Thread H Hartley Sweeten
The function vb2_dma_contig_vaddr returns a void * not an integer. Quiets the sparse noise: warning: Using plain integer as NULL pointer Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Pawel Osciak pa...@osciak.com Cc: Marek Szyprowski m.szyprow...@samsung.com Cc: Kyungmin

[PATCH] drivers/media/video/cx23885/cx23885-dvb.c: use %pM to show MAC address

2010-01-05 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Steven Toth st...@kernellabs.com Cc: David S. Miller da...@davemloft.net --- Repost due to merge issues. diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers

[PATCH] drivers/media/dvb/dvb-core/dvb_net.c: use %pM to show MAC address

2010-01-05 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address and mask. The only difference in the output is that the output is shown in the usual colon-separated hex notation. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: David S. Miller da...@davemloft.net --- Repost due

[PATCH] drivers/media/video/tveeprom.c: use %pM to show MAC address

2010-01-05 Thread H Hartley Sweeten
Use the %pM kernel extension to display the MAC address. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: David S. Miller da...@davemloft.net --- Repost due to merge issues. diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index d533ea5..0a87749

[PATCH] drivers/media/common: remove unnecessary casts of void *

2010-01-08 Thread H Hartley Sweeten
drivers/media/common: Remove unnecessary casts of void * void pointers do not need to be cast to other pointer types. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Michael Hunold mich...@mihu.de Cc: Mauro Carvalho Chehab mche...@infradead.org --- drivers/media/common

RE: [PATCH 10/10] drivers: misc: use module_platform_driver_probe()

2013-03-15 Thread H Hartley Sweeten
On Thursday, March 14, 2013 6:58 AM, Arnd Bergmann wrote: On Thursday 14 March 2013, Fabio Porcedda wrote: This patch converts the drivers to use the module_platform_driver_probe() macro which makes the code smaller and a bit simpler. Signed-off-by: Fabio Porcedda fabio.porce...@gmail.com