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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 46CB0C2BB41 for ; Tue, 16 Aug 2022 07:57:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230486AbiHPH46 (ORCPT ); Tue, 16 Aug 2022 03:56:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231817AbiHPH40 (ORCPT ); Tue, 16 Aug 2022 03:56:26 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0E24BB05 for ; Mon, 15 Aug 2022 22:11:53 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 64E1DB815C6 for ; Tue, 16 Aug 2022 05:11:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 78413C433D6; Tue, 16 Aug 2022 05:11:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660626711; bh=3lsNv/BfSOvovoY2sQwhKkg8Ton42wqCJargMfbwk1k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MboDQ3OZGkkLy7gvPjXhQnhjsYGCQKAlOAu2QE07wB74+FMJPuG6IYjQSObQxx55V 7PKciKtxKlbp2CGKHKq1wxzPsoJsP4P0nM8Tp7hNjWn3YvAS1FHznQLPFIZYexmEsu EG4Os48X+N3Iobbj64FOo4XVI5q1ed/eLz6B49jC2az/k1u2Lc3ArLgDHvjbjxrW20 SgWa7It1oygfmaMwLSihki3NpAjG4v1rxYkDgot6oK49olRoP8INZqPPFPogJuOvxo fT/NTE3rW9WlJEoH0tik9ALd2acgW6D7nRYyEkzwuwEr/hPQpNimR8Z2GQGbmbxVp2 GCWrdtx1WKMUQ== Date: Tue, 16 Aug 2022 05:11:47 +0000 From: Tzung-Bi Shih To: Prashant Malani Cc: linux-kernel@vger.kernel.org, chrome-platform@lists.linux.dev, bleung@chromium.org, Daisuke Nojiri , "Dustin L. Howett" , Greg Kroah-Hartman , Guenter Roeck , "Gustavo A. R. Silva" , Lee Jones , Xiang wangx Subject: Re: [PATCH v5 4/7] platform/chrome: cros_typec_switch: Add event check Message-ID: References: <20220815063555.1384505-1-pmalani@chromium.org> <20220815063555.1384505-5-pmalani@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220815063555.1384505-5-pmalani@chromium.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Aug 15, 2022 at 06:34:24AM +0000, Prashant Malani wrote: > The Chrome EC updates Type-C status events when mux set requests from To be consistent to the series, I guess you would like to use ChromeOS instead of Chrome? > +static int cros_typec_send_clear_event(struct cros_typec_switch_data *sdata, int port_num, > + u32 events_mask) > +{ [...] > + return cros_ec_cmd(sdata->ec, 0, EC_CMD_TYPEC_CONTROL, &req, > + sizeof(req), NULL, 0); The line can join to the previous line without exceeding col-100.