Re: [Y2038] [PATCH] Staging: media: lirc: Replace timeval with ktime_t

2015-05-22 Thread Arnd Bergmann
On Friday 22 May 2015 17:58:42 Ksenija Stanojevic wrote: 'struct timeval last_tv' is used to get the time of last signal change and 'struct timeval last_intr_tv' is used to get the time of last UART interrupt. 32-bit systems using 'struct timeval' will break in the year 2038, so we have to

[PATCH 0/4] SkystarS2 pid filtering fix and stream control.

2015-05-22 Thread Jemma Denson
This patch series finishes off the addition of the SkyStarS2 card - the patches here aren't strictly required for running the card so haven't previously been included. The first patch fixes a bug present in the current flexcop driver - I've seen it with this card, and it has also been noticed in

[PATCH 1/4] b2c2: Add option to skip the first 6 pid filters

2015-05-22 Thread Jemma Denson
The flexcop bridge chip has two banks of hardware pid filters - an initial 6, and on some chip revisions an additional bank of 32. A bug is present on the initial 6 - when changing transponders one of two PAT packets from the old transponder would be included in the initial packets from the new

[PATCH 2/4] b2c2: Allow external stream control

2015-05-22 Thread Jemma Denson
This patch brings in a feature present in the gpl patch portion of the SkystarS2 driver available for download from Technisat. The patch is identical save for renaming the configuration variable, and also directly exposing the flexcop_rcv_data_ctrl() instead of wrapping it around a separate

[PATCH 4/4] b2c2: Always turn off receive stream

2015-05-22 Thread Jemma Denson
When letting an external device control the receive stream, it won't know when there's demand for any feeds, so won't be turning off our receive stream. This patch bring back control of turning it off in this sitation. The demod can still delay turning it on until it has data to send, and still

[PATCH 3/4] cx24120: Take control of b2c2 receive stream

2015-05-22 Thread Jemma Denson
Now that b2c2 has an option to allow us to do so, turn off the flexcop receive stream when we turn off mpeg output whilst tuning. This turning off whilst tuning feature is a bit unusual, and can now also be easily disabled by leaving stream_control unset in the config struct. Signed-off-by:

Microsoft Exchange

2015-05-22 Thread Castanedo Samper, Miguel Angel
Your Microsoft Exchange Mailbox Is Full CLICK ON THE LINK OR COPY THE LINK http://correowebmail.jimdo.com/ http://correowebmail.jimdo.com/To Update Your Microsoft Exchange Mailbox Account And Migrate To The New Microsoft Exchange 2015. Regards, Help Desk (@)2015. All Rights Reserved.

Re: [PATCH 0/2] Update ALSA driver to use media controller API

2015-05-22 Thread Shuah Khan
On 05/08/2015 01:31 PM, Shuah Khan wrote: This patch series updates ALSA driver to use media controller API to share tuner with DVB and V4L2 drivers that control AU0828 media device. Two new interfaces are added to media controller API to enable creating media device as a device resource. This

cron job: media_tree daily build: ERRORS

2015-05-22 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Sat May 23 04:00:21 CEST 2015 git branch: test git hash: 2a80f296422a01178d0a993479369e94f5830127 gcc

Re: [PATCH v3 1/7] rc: rc-ir-raw: Add scancode encoder callback

2015-05-22 Thread David Härdeman
On 2015-05-22 07:27, Antti Seppälä wrote: On 21 May 2015 at 22:40, David Härdeman da...@hardeman.nu wrote: On Thu, May 21, 2015 at 05:22:08PM +0300, Antti Seppälä wrote: On 21 May 2015 at 15:30, David Härdeman da...@hardeman.nu wrote: On 2015-05-21 13:51, Antti Seppälä wrote: On 21 May 2015

s5p-mfc: sparse warnings

2015-05-22 Thread Hans Verkuil
Hi Marek, Kamil, Can someone look at these sparse warnings? s5p-mfc/s5p_mfc_opr_v5.c:266:23: warning: incorrect type in argument 2 (different address spaces) s5p-mfc/s5p_mfc_opr_v5.c:274:23: warning: incorrect type in argument 1 (different address spaces) s5p-mfc/s5p_mfc_opr_v6.c:1855:23:

[PATCH v3 2/4] break kconfig dependency loop

2015-05-22 Thread Gerd Hoffmann
After adding virtio-gpu I get this funky kconfig dependency loop. scripts/kconfig/conf --oldconfig Kconfig drivers/video/fbdev/Kconfig:5:error: recursive dependency detected! drivers/video/fbdev/Kconfig:5: symbol FB is selected by DRM_KMS_FB_HELPER drivers/gpu/drm/Kconfig:34: symbol

[PATCH 00/11] cobalt bug fixes, fixes for compiler/sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This patch series fixes two bugs in the cobalt driver and a pile of compiler and sparse fixes (mostly in cobalt as well). Regards, Hans Hans Verkuil (11): cobalt: fix irqs used for the adv7511 transmitter cobalt: fix 64-bit division link

[PATCH 01/11] cobalt: fix irqs used for the adv7511 transmitter

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The interrupt bit assignments use for the adv7511 were off by one. This means that the current scheme (bit (4 * stream_index)) can no longer be used. Fix this by precalculating and storing the correct masks in the cobalt_stream struct. This wasn't

[PATCH 12/11] adv7604/cobalt: missing GPIOLIB dependency

2015-05-22 Thread Hans Verkuil
The adv7604 driver depends on GPIOLIB, and therefore cobalt depends on it as well. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/i2c/Kconfig| 2 +- drivers/media/pci/cobalt/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 11/11] saa7164: fix sparse warning

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/saa7164/saa7164-i2c.c:45:33: warning: Using plain integer as NULL pointer Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/pci/saa7164/saa7164-i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 05/11] cobalt: fix sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/cobalt/cobalt-flash.c:39:36: warning: incorrect type in initializer (different address spaces) drivers/media/pci/cobalt/cobalt-flash.c:54:36: warning: incorrect type in initializer (different address spaces)

[PATCH 02/11] cobalt: fix 64-bit division link error

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com [linuxtv-media:master 1023/1029] ERROR: __aeabi_uldivmod [drivers/media/pci/cobalt/cobalt.ko] undefined! Signed-off-by: Hans Verkuil hans.verk...@cisco.com Reported-by: kbuild test robot fengguang...@intel.com --- drivers/media/pci/cobalt/cobalt-v4l2.c

[PATCH 07/11] cobalt: fix sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/cobalt/cobalt-irq.c:62:33: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-irq.c:64:17: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-irq.c:65:23: warning: dereference of noderef

[PATCH 08/11] cobalt: fix sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/cobalt/cobalt-i2c.c:130:17: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-i2c.c:147:17: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-i2c.c:151:26: warning: dereference of

[PATCH 06/11] cobalt: fix sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/cobalt/cobalt-flash.c:101:5: warning: symbol 'cobalt_flash_probe' was not declared. Should it be static? drivers/media/pci/cobalt/cobalt-flash.c:126:6: warning: symbol 'cobalt_flash_remove' was not declared. Should it be static?

[PATCH 04/11] e4000: fix compiler warning

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/tuners/e4000.c:287:3: warning: this decimal constant is unsigned only in ISO C90 .rangehigh = 220800L, ^ Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Antti Palosaari cr...@iki.fi Cc: Mauro Carvalho Chehab

[PATCH 09/11] cobalt: fix sparse warnings

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/cobalt/cobalt-v4l2.c:189:9: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-v4l2.c:191:9: warning: dereference of noderef expression drivers/media/pci/cobalt/cobalt-v4l2.c:192:9: warning: dereference of

[PATCH 03/11] cobalt: fix compiler warnings on 32 bit OSes

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Fixes these warnings: drivers/media/pci/cobalt/cobalt-omnitek.c: In function 'omni_sg_dma_start': drivers/media/pci/cobalt/cobalt-omnitek.c:112:28: warning: right shift count = width of type [-Wshift-count-overflow] iowrite32((u32)(desc-bus 32),

[PATCH 10/11] cx24120: fix sparse warning

2015-05-22 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com drivers/media/dvb-frontends/cx24120.c:837:6: warning: symbol 'cx24120_calculate_ber_window' was not declared. Should it be static? Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/dvb-frontends/cx24120.c | 2 +- 1 file changed, 1

Re: [PATCH 11/11] saa7164: fix sparse warning

2015-05-22 Thread Steven Toth
On Fri, May 22, 2015 at 9:59 AM, Hans Verkuil hverk...@xs4all.nl wrote: From: Hans Verkuil hans.verk...@cisco.com drivers/media/pci/saa7164/saa7164-i2c.c:45:33: warning: Using plain integer as NULL pointer Signed-off-by: Hans Verkuil hans.verk...@cisco.com ---

Twoja skrzynka pocztowa zostala czasowo zawieszona!!!?

2015-05-22 Thread System Admin
Drogi Uzytkowniku Niedawno wykryto nietypowe dzialania z konta e-mail, wiec skrzynka pocztowa zostala tymczasowo zawieszona przez administratora systemu, nalezy odzyskac swoje konto, klikajac na ponizszy link lub skopiuj do przegladarki: http://helpmantolls3.wix.com/admin-help-desk-cent/ W

[PATCH] Staging: media: lirc: Replace timeval with ktime_t

2015-05-22 Thread Ksenija Stanojevic
'struct timeval last_tv' is used to get the time of last signal change and 'struct timeval last_intr_tv' is used to get the time of last UART interrupt. 32-bit systems using 'struct timeval' will break in the year 2038, so we have to replace that code with more appropriate types. Here struct