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=-0.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS 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 D5047C3F2D1 for ; Wed, 4 Mar 2020 10:15:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9CCA320848 for ; Wed, 4 Mar 2020 10:15:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583316909; bh=TZxSjlQUQnu4NgDVbd2gidz7ci7NQGXtyn5tKoCqUWY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=nvR3GwT/LZ2QhxDzFQ9/jcIq5PJRZ0Ju8rly4Zo0gooUhvM9NMTFm7XxyNLgfUUZu Uj+z+0cbBUfUj/OmTMb+j5/2lRIOdY4VjGNL0d+5m8F7XuH8HQv2y9PN2T93o3w5z4 3AlyR1Rg+qTLNVRTHTcDPC3SCnkCBZK7l4tule5k= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387398AbgCDKPJ (ORCPT ); Wed, 4 Mar 2020 05:15:09 -0500 Received: from mail.kernel.org ([198.145.29.99]:57206 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726137AbgCDKPI (ORCPT ); Wed, 4 Mar 2020 05:15:08 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 E4E7120848; Wed, 4 Mar 2020 10:15:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583316907; bh=TZxSjlQUQnu4NgDVbd2gidz7ci7NQGXtyn5tKoCqUWY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YWc2GNDvSL8Kep3T4e12Y2TxlPN9nV14EbdJ+xvHqTGAzjrweiqJlDHr5bB6/OU+a kBUfAyibkAuMBaPnmQBomLtgDH9YixyJgJJOyC4DB35OtncTaIdXhOrdoOf9IXRRYo jfWm7kxjPZe8lAlyIWC8QRq7ajmh1kf7ZMaqACbo= Date: Wed, 4 Mar 2020 11:15:05 +0100 From: Greg Kroah-Hartman To: Heikki Krogerus Cc: Benson Leung , Prashant Malani , Mika Westerberg , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org Subject: Re: [PATCH v3 0/9] usb: typec: Driver for Intel PMC Mux-Agent Message-ID: <20200304101505.GA1566030@kroah.com> References: <20200302135353.56659-1-heikki.krogerus@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200302135353.56659-1-heikki.krogerus@linux.intel.com> Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Mon, Mar 02, 2020 at 04:53:44PM +0300, Heikki Krogerus wrote: > Hi, > > The statements were ended incorrectly with comma instead of semicolon > in drivers/usb/cdns3/core.c (PATCH 5/9) as pointed out by Peter. I've > fixed that in this version. There are no other changes. > > v2 commit message: > > I've unified the driver data handling in all drivers in patch 5/9 as > requested by Peter, and also now using consistently dev_set_drvdata() > in patch 4/9 as requested by Chunfeng Yun. Those were the only > changes in this version. > > The original (v1) commit message: > > The Intel PMC (Power Management Controller) microcontroller, which is > available on most SOCs from Intel, has a function called mux-agent. > The mux-agent, when visible to the operating system, makes it possible > to control the various USB muxes on the system. > > In practice the mux-agent is a device that controls multiple muxes. > Unfortunately both the USB Type-C Class and the USB Role Class don't > have proper support for that kind of devices that handle multiple > muxes, which is why I had to tweak the APIs a bit. > > On top of the API changes, and the driver of course, I'm adding a > header for the Thunderbolt 3 alt mode since the "mux-agent" supports > it. Looks good, all now queued up, thanks. greg k-h