Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp3754674pxk; Tue, 22 Sep 2020 01:27:13 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyIzvSpBr3kFw1yhBlTMcQutcnWw4x+Fb1odFa3p3BiPvWqPCtv13kDFSShO+iX6P1vso98 X-Received: by 2002:a17:906:d8bc:: with SMTP id qc28mr3744853ejb.490.1600763233689; Tue, 22 Sep 2020 01:27:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600763233; cv=none; d=google.com; s=arc-20160816; b=QMr+n/KPuZBXwhVJNS1ugVQfAeqwAINHqlS1sNa5+z6JtFVctDioRA/xyeerK+9Mwk 89N8TozndI/OsgUXEuZMj+ymr8weltNbafwppgRubaTjANW2d+8x8FgTX79O0EP/wf1D Xa1pQEAQ2qib5Q0bFE1f0/Vr9CLdVUX/3DyRa72rzRVuNGqXhRMpkstobjJzqBQCX51U 90WMQD+6Yu4vptYkE/1Ucd1oUzOGgEEAUJgR2pTA6mEj1Kax5Z4SdpqAHsqaDGHgtotk KeosESRMeeEczt8YYT6CKQ3PszdkUgJhEIk9trC16BT2TJC0DFe0BGYBFdNcpwHlpnEe 7NMw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=6VJEK5XL5J/a1vBsjtVst6O9z5iHe7DCjQdcyPehOl8=; b=I5MQgFLuzrCs2RoapB/5yttUU4J4s8myZ4gmEjB8SR0BNyDejhjItC1axcP+SvpsAN kO3NWRDoMAepen1DyVsoZIhQ4wtDxK7syuhLrj5f1wwK0SYXv1biEUVZ+rwo0v4vbWdm 2zsWdd2VqTWExl0rbHQEwNL162N0fYiv3dcOt457v43EkhNn37xdbh0jnYld4echj5Zs lDJ/TzjvC5Ec8AihCXWm06AOB9fmeDlLWMAyV0GX3XlvoEDm+YoVsvlnvh3S4JGZTYPV /RjiO9BDj6GNFk9Mq2dDMHgl6I/NLcQb5DSiWfHGsIwdBpBFlpk9m8ha1CDUEiW5J1Ri na0Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id x11si9855166edr.460.2020.09.22.01.26.50; Tue, 22 Sep 2020 01:27:13 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728840AbgIVFb6 (ORCPT + 99 others); Tue, 22 Sep 2020 01:31:58 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:42062 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728422AbgIVFb6 (ORCPT ); Tue, 22 Sep 2020 01:31:58 -0400 X-Greylist: delayed 566 seconds by postgrey-1.27 at vger.kernel.org; Tue, 22 Sep 2020 01:31:57 EDT Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 08M5Vsvu016420; Tue, 22 Sep 2020 07:31:54 +0200 Date: Tue, 22 Sep 2020 07:31:54 +0200 From: Willy Tarreau To: poeschel@lemonage.de Cc: Miguel Ojeda Sandonis , Ksenija Stanojevic , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 00/33] Make charlcd device independent Message-ID: <20200922053154.GC16386@1wt.eu> References: <20191016082430.5955-1-poeschel@lemonage.de> <20200921144645.2061313-1-poeschel@lemonage.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200921144645.2061313-1-poeschel@lemonage.de> User-Agent: Mutt/1.6.1 (2016-04-27) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Lars, On Mon, Sep 21, 2020 at 04:46:12PM +0200, poeschel@lemonage.de wrote: > This tries to make charlcd device independent. At the moment hd44780 > device specific code is contained deep in charlcd. This moves this out > into a hd44780_common module, where the two hd44780 drivers we have at > the moment (hd44780 and panel) can use this from. The goal is that at > the end other drivers can use the charlcd interface. > I add one such driver at the end with the last patch. > I submitted this already some time ago [1], where the wish was so split > this into smaller chunks what I try to do with this new patchset. > Most of the patches pick one specific function in charlcd and move the > device specific code into hd44780_common. Regardless of my two comments, this series looks very clean to me, nice job! For 1..32, feel free to add: Reviewed-by: Willy Tarreau Just be careful in your commit messages, I spotted a few "it's own" instead of "its own", but that's a very minor detail :-) Willy