This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Upstream + V4L/DVB patches for linux-next".

The branch, master has been updated
       via  290763c269a21dd7e44c59ba6398c66aaccb8679 (commit)
       via  8699dea7fd86c7b83b2f9c58a88f437f7905fcee (commit)
       via  5aeae8a404d292f425c9bf9c29c2dd237451b1bc (commit)
       via  3d8b39b5d251797cad44ab3d516b2d421a532e9a (commit)
       via  b7fcac936934d1db3435ad12d6a9ff94c2dc1726 (commit)
      from  8faac5a326c545711b6b95d8e88922d998dc3398 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 290763c269a21dd7e44c59ba6398c66aaccb8679
Author: Jiri Slaby <jsl...@suse.cz>
Date:   Wed Feb 10 20:32:42 2010 -0300

    V4L/DVB: DVB: ngene, fix memset parameters
    
    Switch second and third memset parameter to stamp the length buffer bytes
    by 0xff's, not 255 bytes by low 8 bits of Length.
    
    Cc: linux-me...@vger.kernel.org, linux-ker...@vger.kernel.org,      
jirisl...@gmail.com, Matthias Benesch <two...@freenet.de>,      Ralph Metzler 
<r...@metzlerbros.de>, Oliver Endriss <o.endr...@gmx.de>
    Signed-off-by: Jiri Slaby <jsl...@suse.cz>
    Cc: Matthias Benesch <two...@freenet.de>
    Cc: Ralph Metzler <r...@metzlerbros.de>
    Cc: Oliver Endriss <o.endr...@gmx.de>
    Cc: Mauro Carvalho Chehab <mche...@redhat.com>
    Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

commit 8699dea7fd86c7b83b2f9c58a88f437f7905fcee
Author: Randy Dunlap <randy.dun...@oracle.com>
Date:   Wed Feb 10 14:53:57 2010 -0300

    V4L/DVB: tm6000: fix build errors
    
    (1) tm6000 uses usb_*() interfaces, so it should depend on USB.
    
    drivers/built-in.o: In function `tm6000_usb_disconnect':
    tm6000-cards.c:(.text+0x4abb44): undefined reference to `usb_put_dev'
    drivers/built-in.o: In function `tm6000_usb_probe':
    tm6000-cards.c:(.text+0x4ac923): undefined reference to `usb_get_dev'
    tm6000-cards.c:(.text+0x4ac93c): undefined reference to `usb_set_interface'
    drivers/built-in.o: In function `tm6000_read_write_usb':
    (.text+0x4ad274): undefined reference to `usb_control_msg'
    drivers/built-in.o: In function `tm6000_uninit_isoc':
    tm6000-video.c:(.text+0x4b00d5): undefined reference to `usb_kill_urb'
    tm6000-video.c:(.text+0x4b00e4): undefined reference to `usb_unlink_urb'
    tm6000-video.c:(.text+0x4b013c): undefined reference to `usb_buffer_free'
    tm6000-video.c:(.text+0x4b014b): undefined reference to `usb_free_urb'
    drivers/built-in.o: In function `tm6000_prepare_isoc':
    tm6000-video.c:(.text+0x4b0773): undefined reference to `usb_alloc_urb'
    tm6000-video.c:(.text+0x4b0835): undefined reference to `usb_buffer_alloc'
    drivers/built-in.o: In function `tm6000_irq_callback':
    tm6000-video.c:(.text+0x4b1ad3): undefined reference to `usb_submit_urb'
    drivers/built-in.o: In function `tm6000_module_init':
    tm6000-cards.c:(.init.text+0x24499): undefined reference to 
`usb_register_driver'
    drivers/built-in.o: In function `tm6000_module_exit':
    tm6000-cards.c:(.exit.text+0x5cb0): undefined reference to `usb_deregister'
    
    (2) tm6000-alsa uses interfaces from tm6000-core, so when they are
    both built as modules, the core interfaces need to be exported.
    
    ERROR: "tm6000_set_reg" [drivers/staging/tm6000/tm6000-alsa.ko] undefined!
    ERROR: "tm6000_get_reg" [drivers/staging/tm6000/tm6000-alsa.ko] undefined!
    
    Cc: linux-n...@vger.kernel.org, LKML <linux-ker...@vger.kernel.org>,        
linux-me...@vger.kernel.org
    Signed-off-by: Randy Dunlap <randy.dun...@oracle.com>
    Cc: Mauro Carvalho Chehab <mche...@infradead.org>
    Cc: Michel Ludwig <michel.lud...@gmail.com>
    Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

commit 5aeae8a404d292f425c9bf9c29c2dd237451b1bc
Author: Richard Guenther <rguent...@suse.de>
Date:   Tue Feb 9 20:16:03 2010 -0300

    V4L/DVB: dvb: l64781.ko broken with gcc 4.5
    
    I'm trying to fix it on the GCC side (PR43007), but the module is
    quite stupid in using ULL constants to operate on u32 values:
    
    static int apply_frontend_param (struct dvb_frontend* fe, struct
    dvb_frontend_parameters *param)
    {
    ...
     static const u32 ppm = 8000;
     u32 spi_bias;
    ...
    
     spi_bias *= 1000ULL;
     spi_bias /= 1000ULL + ppm/1000;
    
    which causes current GCC 4.5 to emit calls to __udivdi3 for i?86 again.
    
    This patch fixes this issue.
    
    Signed-off-by: Richard Guenther <rguent...@suse.de>
    Signed-off-by: Greg Kroah-Hartman <gre...@suse.de>
    Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

commit 3d8b39b5d251797cad44ab3d516b2d421a532e9a
Author: andrea.amoros...@gmail.com <andrea.amoros...@gmail.com>
Date:   Tue Feb 9 17:53:38 2010 -0300

    V4L/DVB: em28xx: add Dikom DK300 hybrid USB tuner
    
    Adds digital and analogue tv support for Dikom DK300 hybrid usb card.
    
    Not working: remote controller
    
    To be done: it seems that with the proposed patch the digital demodulator
    remains activated if the tuner is switched from digital to analogue mode.
    
    Workaround is to unplug and replug the device when switching from digital to
    analogue. If someone can explain how to verify the gpio settings using the
    usbsnoop, the above issue perhaps can be resolved.
    
    Signed-off-by: Andrea Amorosi <andrea.amoros...@gmail.com>
    Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

commit b7fcac936934d1db3435ad12d6a9ff94c2dc1726
Author: Julia Lawall <ju...@diku.dk>
Date:   Sat Feb 6 05:43:58 2010 -0300

    V4L/DVB: drivers/media: Correct NULL test
    
    In each case, the NULL test has been performed already.
    
    A simplified version of the semantic match that finds this problem is as
    follows: (http://coccinelle.lip6.fr/)
    
    // <smpl>
    @r@
    expression *x;
    expression e;
    identifier l;
    @@
    
    if (x == NULL || ...) {
        ... when forall
        return ...; }
    ... when != goto l;
        when != x = e
        when != &x
    *x == NULL
    // </smpl>
    
    Signed-off-by: Julia Lawall <ju...@diku.dk>
    Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

-----------------------------------------------------------------------

Summary of changes:
 drivers/media/dvb/frontends/l64781.c       |    4 +-
 drivers/media/dvb/frontends/stv0900_core.c |    5 ---
 drivers/media/dvb/ngene/ngene-core.c       |    2 +-
 drivers/media/video/cpia.c                 |    3 --
 drivers/media/video/em28xx/em28xx-cards.c  |   48 ++++++++++++++++++++++++++++
 drivers/media/video/em28xx/em28xx-dvb.c    |    1 +
 drivers/media/video/em28xx/em28xx.h        |    1 +
 drivers/staging/tm6000/Kconfig             |    2 +-
 drivers/staging/tm6000/tm6000-core.c       |    2 +
 9 files changed, 56 insertions(+), 12 deletions(-)


hooks/post-receive
-- 
Upstream + V4L/DVB patches for linux-next

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to