Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932254AbcJKRtt (ORCPT ); Tue, 11 Oct 2016 13:49:49 -0400 Received: from us01smtprelay-2.synopsys.com ([198.182.60.111]:41913 "EHLO smtprelay.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752840AbcJKRsn (ORCPT ); Tue, 11 Oct 2016 13:48:43 -0400 From: Carlos Palminha To: , CC: , , Subject: [PATCH 1/5] i2c: i2c-piix4: coding style fix - '*' adjacent to data name Date: Tue, 11 Oct 2016 18:24:37 +0100 Message-ID: <20161011172441.7422-2-palminha@synopsys.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20161011172441.7422-1-palminha@synopsys.com> References: <20161011172441.7422-1-palminha@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.25.118] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 857 Lines: 23 Signed-off-by: Carlos Palminha --- drivers/i2c/busses/i2c-piix4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c index c2268cd..6b55a8e 100644 --- a/drivers/i2c/busses/i2c-piix4.c +++ b/drivers/i2c/busses/i2c-piix4.c @@ -482,9 +482,9 @@ static int piix4_transaction(struct i2c_adapter *piix4_adapter) } /* Return negative errno on error. */ -static s32 piix4_access(struct i2c_adapter * adap, u16 addr, +static s32 piix4_access(struct i2c_adapter *adap, u16 addr, unsigned short flags, char read_write, - u8 command, int size, union i2c_smbus_data * data) + u8 command, int size, union i2c_smbus_data *data) { struct i2c_piix4_adapdata *adapdata = i2c_get_adapdata(adap); unsigned short piix4_smba = adapdata->smba; -- 2.9.3