From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753922AbaHUJSw (ORCPT ); Thu, 21 Aug 2014 05:18:52 -0400 Received: from 80-229-23-162.plus.com ([80.229.23.162]:48415 "EHLO mail.einon.net" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1750791AbaHUJSv (ORCPT ); Thu, 21 Aug 2014 05:18:51 -0400 Date: Thu, 21 Aug 2014 10:18:19 +0100 From: Mark Einon To: Fabio Estevam Cc: Greg Kroah-Hartman , devel@driverdev.osuosl.org, "netdev@vger.kernel.org" , linux-kernel Subject: Re: [PATCH 5/8] staging: et131x: Remove unnecessary i2c_wack variable Message-ID: <20140821091819.GA2230@msilap.einon.net> References: <1408573078-9320-1-git-send-email-mark.einon@gmail.com> <1408573078-9320-6-git-send-email-mark.einon@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 20, 2014 at 07:22:54PM -0300, Fabio Estevam wrote: > On Wed, Aug 20, 2014 at 7:17 PM, Mark Einon wrote: > > > do { > > pci_read_config_dword(pdev, > > - LBCIF_DATA_REGISTER, &val); > > + LBCIF_DATA_REGISTER, > > + &val); > > This seems to be an unrelated change. Hi Fabio, thanks for the review. It's a space alignment of parameters to go with the previous change, to keep wrapping consistent in the file: - while (i2c_wack) { + while (1) { if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER, - LBCIF_CONTROL_LBCIF_ENABLE)) + LBCIF_CONTROL_LBCIF_ENABLE)) So what are you saying - are you just commenting, document it, put it in a seperate patch? Cheers, Mark From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Einon Subject: Re: [PATCH 5/8] staging: et131x: Remove unnecessary i2c_wack variable Date: Thu, 21 Aug 2014 10:18:19 +0100 Message-ID: <20140821091819.GA2230@msilap.einon.net> References: <1408573078-9320-1-git-send-email-mark.einon@gmail.com> <1408573078-9320-6-git-send-email-mark.einon@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: devel@driverdev.osuosl.org, Greg Kroah-Hartman , linux-kernel , "netdev@vger.kernel.org" To: Fabio Estevam Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: driverdev-devel-bounces@linuxdriverproject.org Sender: driverdev-devel-bounces@linuxdriverproject.org List-Id: netdev.vger.kernel.org On Wed, Aug 20, 2014 at 07:22:54PM -0300, Fabio Estevam wrote: > On Wed, Aug 20, 2014 at 7:17 PM, Mark Einon wrote: > > > do { > > pci_read_config_dword(pdev, > > - LBCIF_DATA_REGISTER, &val); > > + LBCIF_DATA_REGISTER, > > + &val); > > This seems to be an unrelated change. Hi Fabio, thanks for the review. It's a space alignment of parameters to go with the previous change, to keep wrapping consistent in the file: - while (i2c_wack) { + while (1) { if (pci_write_config_byte(pdev, LBCIF_CONTROL_REGISTER, - LBCIF_CONTROL_LBCIF_ENABLE)) + LBCIF_CONTROL_LBCIF_ENABLE)) So what are you saying - are you just commenting, document it, put it in a seperate patch? Cheers, Mark