From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,UNPARSEABLE_RELAY,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 19EBFC433DF for ; Fri, 21 Aug 2020 07:13:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F41BF22BF5 for ; Fri, 21 Aug 2020 07:13:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727929AbgHUHNW (ORCPT ); Fri, 21 Aug 2020 03:13:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32920 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727075AbgHUHNW (ORCPT ); Fri, 21 Aug 2020 03:13:22 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 25ED4C061385 for ; Fri, 21 Aug 2020 00:13:22 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: eballetbo) with ESMTPSA id AACD529AE4D Subject: Re: [PATCH v4 0/3] TypeC Connector Class driver improvements To: Azhar Shaikh , bleung@chromium.org, groeck@chromium.org, heikki.krogerus@linux.intel.com, pmalani@chromium.org Cc: linux-kernel@vger.kernel.org, rajmohan.mani@intel.com, utkarsh.h.patel@intel.com, casey.g.bowman@intel.com References: <20200820233833.4551-1-azhar.shaikh@intel.com> From: Enric Balletbo i Serra Message-ID: <5010d4f3-ac59-2a06-051c-83c8a51c3f4b@collabora.com> Date: Fri, 21 Aug 2020 09:13:13 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20200820233833.4551-1-azhar.shaikh@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Azhar, I got a merge conflict because I applied [1] before these patches, fix the conflict is trivial but, as I can't test, can you rebase your patches on top of [1] and test and resend to make sure everything is working? Thanks, Enric [1] https://lkml.org/lkml/2020/7/10/1063 On 21/8/20 1:38, Azhar Shaikh wrote: > Changes in v4: > * Patch 1: "platform/chrome: cros_ec_typec: Send enum values to > usb_role_switch_set_role()" > - Remove extra line between Fixes and Signed-off tag. > - Added Reviewed-by and Cc tags from v1 and v2. > > * Patch 2: "platform/chrome: cros_ec_typec: Avoid setting usb role twice > during disconnect" > - Added Suggested-by from v2. > > * Patch 3: "platform/chrome: cros_ec_typec: Re-order connector > configuration steps" > - No change > > Changes in v3: > * Patch 1: "platform/chrome: cros_ec_typec: Send enum values to > usb_role_switch_set_role()" > - No change > > * Patch 2: "platform/chrome: cros_ec_typec: Avoid setting usb role twice > during disconnect" > - Move the location of calling usb_role_switch_set_role() to > end of function in cros_typec_configure_mux() to avoid any change > in code flow. > > * Patch 3: "platform/chrome: cros_ec_typec: Re-order connector > configuration steps" > - New patch added > > Changes in v2: > * Patch 1: "platform/chrome: cros_ec_typec: Send enum values to > usb_role_switch_set_role()" > - Update the commit message to change 'USB_ROLE_HOST in case of > UFP.' to 'USB_ROLE_HOST in case of DFP.' > > * Patch 2: "platform/chrome: cros_ec_typec: Avoid setting usb role twice > during disconnect" > - New patch added. > > Azhar Shaikh (3): > platform/chrome: cros_ec_typec: Send enum values to > usb_role_switch_set_role() > platform/chrome: cros_ec_typec: Avoid setting usb role twice during > disconnect > platform/chrome: cros_ec_typec: Re-order connector configuration steps > > drivers/platform/chrome/cros_ec_typec.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) >