From: Mauro Carvalho Chehab <mchehab@s-opensource.com>
To: "Jörg Otte" <jrg.otte@gmail.com>
Cc: Johannes Stezenbach <js@linuxtv.org>,
Jiri Kosina <jikos@kernel.org>,
Patrick Boettcher <patrick.boettcher@posteo.de>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Andy Lutomirski <luto@kernel.org>,
Michael Krufky <mkrufky@linuxtv.org>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Linux Media Mailing List <linux-media@vger.kernel.org>
Subject: Re: Problem with VMAP_STACK=y
Date: Thu, 6 Oct 2016 14:17:34 -0300 [thread overview]
Message-ID: <20161006141734.4b2e4880@vento.lan> (raw)
In-Reply-To: <CADDKRnCV7YhD5ErkvWSL8P3adymCLqzp5OePYmGp0L=9Dt_=UA@mail.gmail.com>
Em Thu, 6 Oct 2016 10:30:15 +0200
Jörg Otte <jrg.otte@gmail.com> escreveu:
> 2016-10-05 20:55 GMT+02:00 Mauro Carvalho Chehab <mchehab@s-opensource.com>:
> > Hi Johannes,
> >
> > Em Wed, 5 Oct 2016 20:29:45 +0200
> > Johannes Stezenbach <js@linuxtv.org> escreveu:
> >
> >> On Wed, Oct 05, 2016 at 06:04:50AM -0300, Mauro Carvalho Chehab wrote:
> >> > static int cinergyt2_frontend_attach(struct dvb_usb_adapter *adap)
> >> > {
> >> > - char query[] = { CINERGYT2_EP1_GET_FIRMWARE_VERSION };
> >> > - char state[3];
> >> > + struct dvb_usb_device *d = adap->dev;
> >> > + struct cinergyt2_state *st = d->priv;
> >> > int ret;
> >> >
> >> > adap->fe_adap[0].fe = cinergyt2_fe_attach(adap->dev);
> >> >
> >> > - ret = dvb_usb_generic_rw(adap->dev, query, sizeof(query), state,
> >> > - sizeof(state), 0);
> >>
> >> it seems to miss this:
> >>
> >> st->data[0] = CINERGYT2_EP1_GET_FIRMWARE_VERSION;
> >>
> >> > + ret = dvb_usb_generic_rw(d, st->data, 1, st->data, 3, 0);
> >> > if (ret < 0) {
> >> > deb_rc("cinergyt2_power_ctrl() Failed to retrieve sleep "
> >> > "state info\n");
> >> > @@ -141,13 +147,14 @@ static int repeatable_keys[] = {
> >> > static int cinergyt2_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
> >> > {
> >> > struct cinergyt2_state *st = d->priv;
> >> > - u8 key[5] = {0, 0, 0, 0, 0}, cmd = CINERGYT2_EP1_GET_RC_EVENTS;
> >> > int i;
> >> >
> >> > *state = REMOTE_NO_KEY_PRESSED;
> >> >
> >> > - dvb_usb_generic_rw(d, &cmd, 1, key, sizeof(key), 0);
> >> > - if (key[4] == 0xff) {
> >> > + st->data[0] = CINERGYT2_EP1_SLEEP_MODE;
> >>
> >> should probably be
> >>
> >> st->data[0] = CINERGYT2_EP1_GET_RC_EVENTS;
> >>
> >> > +
> >> > + dvb_usb_generic_rw(d, st->data, 1, st->data, 5, 0);
> >>
> >>
> >> HTH,
> >> Johannes
> >
> >
> > Thanks for the review! Yeah, you're right: both firmware and remote
> > controller logic would be broken without the above fixes.
> >
> > Just sent a version 2 of this patch to the ML with the above fixes.
> >
> > Regards,
> > Mauro
>
> Applied V2 of the patch. Unfortunately no progress.
> No video, no error messages.
I can't see any other obvious error on the conversion. You could try
to enable debug options at DVB core/dvb-usb and/or add some printk's to
the driver and see what's happening.
Thanks,
Mauro
next prev parent reply other threads:[~2016-10-06 17:17 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-04 12:27 Problem with VMAP_STACK=y Jörg Otte
2016-10-04 13:26 ` Jiri Kosina
2016-10-04 16:11 ` Jörg Otte
2016-10-05 7:26 ` Jiri Kosina
2016-10-05 7:34 ` Patrick Boettcher
2016-10-05 7:50 ` Jiri Kosina
2016-10-05 9:04 ` Mauro Carvalho Chehab
2016-10-05 11:21 ` Mauro Carvalho Chehab
2016-10-05 15:21 ` Jörg Otte
2016-10-05 15:53 ` Andy Lutomirski
2016-10-05 16:45 ` Jörg Otte
2016-10-05 16:55 ` Andy Lutomirski
2016-10-05 18:29 ` Johannes Stezenbach
2016-10-05 18:55 ` Mauro Carvalho Chehab
2016-10-06 8:30 ` Jörg Otte
2016-10-06 17:17 ` Mauro Carvalho Chehab [this message]
2016-10-07 7:52 ` Jiri Kosina
2016-10-07 11:11 ` Mauro Carvalho Chehab
2016-10-05 7:40 ` dvb-usb stack-memory used for URB-buffers (was: Re: Problem with VMAP_STACK=y) Patrick Boettcher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161006141734.4b2e4880@vento.lan \
--to=mchehab@s-opensource.com \
--cc=jikos@kernel.org \
--cc=jrg.otte@gmail.com \
--cc=js@linuxtv.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mchehab@kernel.org \
--cc=mkrufky@linuxtv.org \
--cc=patrick.boettcher@posteo.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox