Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S942440AbcJFRRu convert rfc822-to-8bit (ORCPT ); Thu, 6 Oct 2016 13:17:50 -0400 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:57608 "EHLO s-opensource.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934430AbcJFRRl (ORCPT ); Thu, 6 Oct 2016 13:17:41 -0400 Date: Thu, 6 Oct 2016 14:17:34 -0300 From: Mauro Carvalho Chehab To: =?UTF-8?B?SsO2cmc=?= Otte Cc: Johannes Stezenbach , Jiri Kosina , Patrick Boettcher , Linux Kernel Mailing List , Andy Lutomirski , Michael Krufky , Mauro Carvalho Chehab , Linux Media Mailing List Subject: Re: Problem with VMAP_STACK=y Message-ID: <20161006141734.4b2e4880@vento.lan> In-Reply-To: References: <20161005093417.6e82bd97@vdr> <20161005060450.1b0f2152@vento.lan> <20161005182945.nkpphvd6wtk6kq7h@linuxtv.org> <20161005155532.682258e2@vento.lan> Organization: Samsung X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.31; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2422 Lines: 74 Em Thu, 6 Oct 2016 10:30:15 +0200 Jörg Otte escreveu: > 2016-10-05 20:55 GMT+02:00 Mauro Carvalho Chehab : > > Hi Johannes, > > > > Em Wed, 5 Oct 2016 20:29:45 +0200 > > Johannes Stezenbach 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