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=-3.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 D3E73C388F9 for ; Sat, 7 Nov 2020 08:34:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 77D0520872 for ; Sat, 7 Nov 2020 08:34:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604738083; bh=VQEIbjgIJN/CnKwg2D7bKy1wLmUA3zkwBcSJPJaFNtw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=vgE/lXIWoaJEytGPy75DIq08apxf++XjCMlGTpu6u/bsAX2C2FhEo3kY3zaUQuZkA KiMa16uAmAsj8Xgxd4TRysM6H7u4WUkoQTrya1RvXBpXvcdEuLbO3MXqueG82bj3N1 35zyUjdvOD1UEFIJ185cdix8NBHBGxkNOWXf+hAo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728110AbgKGIem (ORCPT ); Sat, 7 Nov 2020 03:34:42 -0500 Received: from mail.kernel.org ([198.145.29.99]:48180 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727901AbgKGIel (ORCPT ); Sat, 7 Nov 2020 03:34:41 -0500 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3F9C820704; Sat, 7 Nov 2020 08:34:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604738079; bh=VQEIbjgIJN/CnKwg2D7bKy1wLmUA3zkwBcSJPJaFNtw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jS3v4nPDiyzQ+usZu5wTHDpE3l2O+nUeSEOT4McUCzkS+y30py91an90kdpCevIJA QFdjmZYa6EqjZkmQXt1IU8Yo71v0nwTRurU4ER1FtRjAjOBbFJDEXciNOpLuGmXveh cq6jVyTdnVBngN4n4wtwF/XnUt3EsG85XHB42nbQ= Date: Sat, 7 Nov 2020 09:34:36 +0100 From: Greg KH To: Prashant Malani Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, Benson Leung , Enric Balletbo i Serra , Guenter Roeck Subject: Re: [PATCH v2 0/6] platform/chrome: cros_ec_typec: Add cable Message-ID: <20201107083436.GB19079@kroah.com> References: <20201106184104.939284-1-pmalani@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201106184104.939284-1-pmalani@chromium.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 06, 2020 at 10:40:57AM -0800, Prashant Malani wrote: > The following series adds Type C cable registration to the cros-ec-typec > port driver using the Type C connector class framework. The first few > patches perform a few minor re-organizations to prepare for the cable > registration patch. > > The last couple of CLs update the USB PD VDO header file to add a > captive cable connector for the Type C cable plug field, and then use > the added macro to add the corresponding field of the Type C cable > descriptor in the cros-ec-typec driver. > > v1: > https://lore.kernel.org/lkml/20201106012758.525472-1-pmalani@chromium.org/ > > Changes since v2: > - Changed local variable uint32_t to u32 in patch 6/6. Looks good to me, for all of these: Reviewed-by: Greg Kroah-Hartman