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.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,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 53F17C433DF for ; Thu, 28 May 2020 22:35:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2C0422068D for ; Thu, 28 May 2020 22:35:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="EmP0zkii" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2437251AbgE1Wfh (ORCPT ); Thu, 28 May 2020 18:35:37 -0400 Received: from vps0.lunn.ch ([185.16.172.187]:55666 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2436945AbgE1Wfe (ORCPT ); Thu, 28 May 2020 18:35:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=dWAvR2csWZ8XjsRaR8g5wNgTpKRrLO5jtJQI1w9ud/M=; b=EmP0zkiiHIAuTG225KofGPRyDX hYXM1/KYI5RtqWfiYZxiQGkTbOZ0VhcuhUdSAOQdkmJ51LGtE1P7GiJYPYCnry1eBUIK5Ea/pYzES Y0sp0hz2IR5KUG/sSX5hTrG5qQ90KZqFAxpJJVDzWX/i42SFivwKDTfC9ZRn0OBz/iO4=; Received: from andrew by vps0.lunn.ch with local (Exim 4.93) (envelope-from ) id 1jeR7d-003aYo-3N; Fri, 29 May 2020 00:35:33 +0200 Date: Fri, 29 May 2020 00:35:33 +0200 From: Andrew Lunn To: Marek Vasut Cc: netdev@vger.kernel.org, "David S . Miller" , Lukas Wunner , Petr Stetiar , YueHaibing Subject: Re: [PATCH V7 18/19] net: ks8851: Implement Parallel bus operations Message-ID: <20200528223533.GH853774@lunn.ch> References: <20200528222146.348805-1-marex@denx.de> <20200528222146.348805-19-marex@denx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200528222146.348805-19-marex@denx.de> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Fri, May 29, 2020 at 12:21:45AM +0200, Marek Vasut wrote: > Implement accessors for KS8851-16MLL/MLLI/MLLU parallel bus variant of > the KS8851. This is based off the ks8851_mll.c , which is a driver for > exactly the same hardware, however the ks8851.c code is much higher > quality. Hence, this patch pulls out the relevant information from the > ks8851_mll.c on how to access the bus, but uses the common ks8851.c > code. To make this patch reviewable, instead of rewriting ks8851_mll.c, > ks8851_mll.c is removed in a separate subsequent patch. > > Signed-off-by: Marek Vasut Reviewed-by: Andrew Lunn Andrew