From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753856AbcD1V2l (ORCPT ); Thu, 28 Apr 2016 17:28:41 -0400 Received: from mail-yw0-f178.google.com ([209.85.161.178]:33348 "EHLO mail-yw0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753828AbcD1V2k (ORCPT ); Thu, 28 Apr 2016 17:28:40 -0400 MIME-Version: 1.0 In-Reply-To: <572212AE.5060904@rock-chips.com> References: <1458147438-62387-3-git-send-email-david.wu@rock-chips.com> <1461074137-23899-1-git-send-email-david.wu@rock-chips.com> <572212AE.5060904@rock-chips.com> Date: Thu, 28 Apr 2016 14:28:34 -0700 X-Google-Sender-Auth: mL8ZEzhnkU3b0OOFbYdBalD904Q Message-ID: Subject: Re: [PATCH v6] i2c: rk3x: add i2c support for rk3399 soc From: Doug Anderson To: "David.Wu" Cc: =?UTF-8?Q?Heiko_St=C3=BCbner?= , Wolfram Sang , Andy Shevchenko , Tao Huang , Lin Huang , Jianqun Xu , Chris , Eddie Cai , "linux-arm-kernel@lists.infradead.org" , "open list:ARM/Rockchip SoC..." , "linux-i2c@vger.kernel.org" , "linux-kernel@vger.kernel.org" , David Wu , Brian Norris , David Riley Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Thu, Apr 28, 2016 at 6:39 AM, David.Wu wrote: > +enum rk3x_i2c_bus_speed { > + I2C_FS_SPD, > + I2C_HS_SPD > +}; > + > +struct rk3x_i2c; > > Why do you need this forward definition? Seems like it's not > necessary. Remove? > > > I think we need a Master_Code state to seperate from other state. I meant remove the line above the contains just: struct rk3x_i2c; ...I don't believe it's needed. You only need a forward declaration like that if you refer to the structure before it's defined. -Doug From mboxrd@z Thu Jan 1 00:00:00 1970 From: dianders@chromium.org (Doug Anderson) Date: Thu, 28 Apr 2016 14:28:34 -0700 Subject: [PATCH v6] i2c: rk3x: add i2c support for rk3399 soc In-Reply-To: <572212AE.5060904@rock-chips.com> References: <1458147438-62387-3-git-send-email-david.wu@rock-chips.com> <1461074137-23899-1-git-send-email-david.wu@rock-chips.com> <572212AE.5060904@rock-chips.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, On Thu, Apr 28, 2016 at 6:39 AM, David.Wu wrote: > +enum rk3x_i2c_bus_speed { > + I2C_FS_SPD, > + I2C_HS_SPD > +}; > + > +struct rk3x_i2c; > > Why do you need this forward definition? Seems like it's not > necessary. Remove? > > > I think we need a Master_Code state to seperate from other state. I meant remove the line above the contains just: struct rk3x_i2c; ...I don't believe it's needed. You only need a forward declaration like that if you refer to the structure before it's defined. -Doug