public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] media: Pinnacle 73e infrared control stopped working since kernel 3.17
@ 2015-02-10 10:38 David Cimbůrek
  2015-02-10 10:45 ` Antti Palosaari
  2015-02-12  0:10 ` Luis de Bethencourt
  0 siblings, 2 replies; 19+ messages in thread
From: David Cimbůrek @ 2015-02-10 10:38 UTC (permalink / raw)
  To: linux-media

Please include this patch to kernel! It takes too much time for such a
simple fix!


2015-01-07 13:51 GMT+01:00 David Cimbůrek <david.cimburek@gmail.com>:
> No one is interested? I'd like to get this patch to kernel to fix the
> issue. Can someone here do it please?
>
>
> 2014-12-20 14:36 GMT+01:00 David Cimbůrek <david.cimburek@gmail.com>:
>> Hi,
>>
>> with kernel 3.17 remote control for Pinnacle 73e (ID 2304:0237
>> Pinnacle Systems, Inc. PCTV 73e [DiBcom DiB7000PC]) does not work
>> anymore.
>>
>> I checked the changes and found out the problem in commit
>> af3a4a9bbeb00df3e42e77240b4cdac5479812f9.
>>
>> In dib0700_core.c in struct dib0700_rc_response the following union:
>>
>> union {
>>     u16 system16;
>>     struct {
>>         u8 not_system;
>>         u8 system;
>>     };
>> };
>>
>> has been replaced by simple variables:
>>
>> u8 system;
>> u8 not_system;
>>
>> But these variables are in reverse order! When I switch the order
>> back, the remote works fine again! Here is the patch:
>>
>>
>> --- a/drivers/media/usb/dvb-usr/dib0700_core.c    2014-12-20
>> 14:27:15.000000000 +0100
>> +++ b/drivers/media/usb/dvb-usr/dib0700_core.c    2014-12-20
>> 14:27:36.000000000 +0100
>> @@ -658,8 +658,8 @@
>>  struct dib0700_rc_response {
>>      u8 report_id;
>>      u8 data_state;
>> -    u8 system;
>>      u8 not_system;
>> +    u8 system;
>>      u8 data;
>>      u8 not_data;
>>  };
>>
>>
>> Regards,
>> David

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH] media: Pinnacle 73e infrared control stopped working since kernel 3.17
@ 2014-12-20 13:36 David Cimbůrek
  2015-01-07 12:51 ` David Cimbůrek
  0 siblings, 1 reply; 19+ messages in thread
From: David Cimbůrek @ 2014-12-20 13:36 UTC (permalink / raw)
  To: linux-media

Hi,

with kernel 3.17 remote control for Pinnacle 73e (ID 2304:0237
Pinnacle Systems, Inc. PCTV 73e [DiBcom DiB7000PC]) does not work
anymore.

I checked the changes and found out the problem in commit
af3a4a9bbeb00df3e42e77240b4cdac5479812f9.

In dib0700_core.c in struct dib0700_rc_response the following union:

union {
    u16 system16;
    struct {
        u8 not_system;
        u8 system;
    };
};

has been replaced by simple variables:

u8 system;
u8 not_system;

But these variables are in reverse order! When I switch the order
back, the remote works fine again! Here is the patch:


--- a/drivers/media/usb/dvb-usr/dib0700_core.c    2014-12-20
14:27:15.000000000 +0100
+++ b/drivers/media/usb/dvb-usr/dib0700_core.c    2014-12-20
14:27:36.000000000 +0100
@@ -658,8 +658,8 @@
 struct dib0700_rc_response {
     u8 report_id;
     u8 data_state;
-    u8 system;
     u8 not_system;
+    u8 system;
     u8 data;
     u8 not_data;
 };


Regards,
David

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2015-02-24 13:47 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-10 10:38 [PATCH] media: Pinnacle 73e infrared control stopped working since kernel 3.17 David Cimbůrek
2015-02-10 10:45 ` Antti Palosaari
2015-02-11 13:24   ` David Härdeman
2015-02-11 13:53     ` David Cimbůrek
2015-02-11 14:40       ` David Härdeman
2015-02-11 16:41         ` David Cimbůrek
2015-02-12 11:50           ` Mauro Carvalho Chehab
2015-02-12 17:34             ` David Cimbůrek
2015-02-12 21:57               ` Luis de Bethencourt
2015-02-13 19:58                 ` David Cimbůrek
2015-02-24 10:08                   ` David Cimbůrek
2015-02-24 10:15                     ` David Härdeman
2015-02-24 13:44                       ` Mauro Carvalho Chehab
2015-02-24 13:47                         ` David Härdeman
2015-02-12  0:10 ` Luis de Bethencourt
2015-02-12  7:15   ` David Cimbůrek
2015-02-12 11:11     ` Luis de Bethencourt
  -- strict thread matches above, loose matches on Subject: below --
2014-12-20 13:36 David Cimbůrek
2015-01-07 12:51 ` David Cimbůrek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox