From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CCA6BA28 for ; Mon, 18 Jul 2022 08:37:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1658133454; x=1689669454; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=svJzOs7lLK8VfxKlVR9L8K4CdAyx/d3LOgCV8X0yj/I=; b=WlPfxQsb/3RuuJxbGjhYdWGRAmzBHjfoZLJ6SnyNyZcriRy7JTXSX6eu 1qpAGNLx0ARUce432VYfc++R3jag4R9kOW27zX4EeEFvcdYkUE/MiNvKI I5syET6AAN/UinS9fsnenOYZAb63DM3/jw4TKe9OBfCgR5c8hR4EVC/LD uecDAMum5o5tLIUjWKgsIeu0NeGZ2X9+7D/i0bIK6CSWMSVKUbpaAfTqs OR+yFHGw5J/JafNolM4ltunbzFkpiH/QwxMC8yhER3rAz8TTViPHMYTrx Pr7Py0IfdDuXioyyknZLMmsClSMLLzVte7tXxINs5qlSWjQM/gptoCNFD A==; X-IronPort-AV: E=McAfee;i="6400,9594,10411"; a="350130031" X-IronPort-AV: E=Sophos;i="5.92,280,1650956400"; d="scan'208";a="350130031" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jul 2022 01:37:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,280,1650956400"; d="scan'208";a="739385494" Received: from kuha.fi.intel.com ([10.237.72.185]) by fmsmga001.fm.intel.com with SMTP; 18 Jul 2022 01:37:31 -0700 Received: by kuha.fi.intel.com (sSMTP sendmail emulation); Mon, 18 Jul 2022 11:37:31 +0300 Date: Mon, 18 Jul 2022 11:37:31 +0300 From: Heikki Krogerus To: Prashant Malani Cc: linux-kernel@vger.kernel.org, chrome-platform@lists.linux.dev, bleung@chromium.org, Guenter Roeck Subject: Re: [PATCH 1/2] platform/chrome: cros_ec_typec: Rename port altmode array Message-ID: References: <20220712210318.2671292-1-pmalani@chromium.org> Precedence: bulk X-Mailing-List: chrome-platform@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220712210318.2671292-1-pmalani@chromium.org> On Tue, Jul 12, 2022 at 09:03:17PM +0000, Prashant Malani wrote: > Rename "p_altmode" to "port_altmode" which is a less ambiguous name for > the port_altmode struct array. > > Signed-off-by: Prashant Malani Acked-by: Heikki Krogerus > --- > drivers/platform/chrome/cros_ec_typec.c | 15 +++++++-------- > 1 file changed, 7 insertions(+), 8 deletions(-) > > diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c > index d6088ba447af..b9848e80f372 100644 > --- a/drivers/platform/chrome/cros_ec_typec.c > +++ b/drivers/platform/chrome/cros_ec_typec.c > @@ -60,8 +60,7 @@ struct cros_typec_port { > uint8_t mux_flags; > uint8_t role; > > - /* Port alt modes. */ > - struct typec_altmode p_altmode[CROS_EC_ALTMODE_MAX]; > + struct typec_altmode port_altmode[CROS_EC_ALTMODE_MAX]; > > /* Flag indicating that PD partner discovery data parsing is completed. */ > bool sop_disc_done; > @@ -282,16 +281,16 @@ static void cros_typec_register_port_altmodes(struct cros_typec_data *typec, > struct cros_typec_port *port = typec->ports[port_num]; > > /* All PD capable CrOS devices are assumed to support DP altmode. */ > - port->p_altmode[CROS_EC_ALTMODE_DP].svid = USB_TYPEC_DP_SID; > - port->p_altmode[CROS_EC_ALTMODE_DP].mode = USB_TYPEC_DP_MODE; > + port->port_altmode[CROS_EC_ALTMODE_DP].svid = USB_TYPEC_DP_SID; > + port->port_altmode[CROS_EC_ALTMODE_DP].mode = USB_TYPEC_DP_MODE; > > /* > * Register TBT compatibility alt mode. The EC will not enter the mode > * if it doesn't support it, so it's safe to register it unconditionally > * here for now. > */ > - port->p_altmode[CROS_EC_ALTMODE_TBT].svid = USB_TYPEC_TBT_SID; > - port->p_altmode[CROS_EC_ALTMODE_TBT].mode = TYPEC_ANY_MODE; > + port->port_altmode[CROS_EC_ALTMODE_TBT].svid = USB_TYPEC_TBT_SID; > + port->port_altmode[CROS_EC_ALTMODE_TBT].mode = TYPEC_ANY_MODE; > > port->state.alt = NULL; > port->state.mode = TYPEC_STATE_USB; > @@ -431,7 +430,7 @@ static int cros_typec_enable_tbt(struct cros_typec_data *typec, > data.enter_vdo |= TBT_ENTER_MODE_ACTIVE_CABLE; > > if (!port->state.alt) { > - port->state.alt = &port->p_altmode[CROS_EC_ALTMODE_TBT]; > + port->state.alt = &port->port_altmode[CROS_EC_ALTMODE_TBT]; > ret = cros_typec_usb_safe_state(port); > if (ret) > return ret; > @@ -473,7 +472,7 @@ static int cros_typec_enable_dp(struct cros_typec_data *typec, > /* Configuration VDO. */ > dp_data.conf = DP_CONF_SET_PIN_ASSIGN(pd_ctrl->dp_mode); > if (!port->state.alt) { > - port->state.alt = &port->p_altmode[CROS_EC_ALTMODE_DP]; > + port->state.alt = &port->port_altmode[CROS_EC_ALTMODE_DP]; > ret = cros_typec_usb_safe_state(port); > if (ret) > return ret; > -- > 2.37.0.144.g8ac04bfd2-goog -- heikki