Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp3754685pxk; Tue, 22 Sep 2020 01:27:15 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxHkoGfTQRVowihN3xH6OsAt2/oSuEMo9HQKJIJ2I69svKX5hNfI6ToE1c5OY5+FLzAELQN X-Received: by 2002:a17:906:71c9:: with SMTP id i9mr3599534ejk.250.1600763234849; Tue, 22 Sep 2020 01:27:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600763234; cv=none; d=google.com; s=arc-20160816; b=Izq7jHaECqxT9lisaHKt6e1xIF5N3E6+nYo7V8hV4M4lz+czAraGhyxkkBflnb+k22 RWYo1YKIYxTPM2rkdOPXPGXU6+SeFH8VY1445mKP7qCGoZi/NQIHQXHsoZcbyjuSOpUl IJU8UhH3cXXXi/4oGisq1riT6k26epXvRpBN+v20Za6QhcW27QAfyN1Cy77/3oEkPHnB XAPJ/oaJ6Wtm3X4jO+HMe4stRERYhrQJjAGVhapEQ+9KhpZqA/GT0P7TZSkqZkBi7np2 Xl4pMQkzg3xFZDt5XzgQAXyJmdZrGh4S20tHs+UAKPxGkf2ogz1SQH3ldauMltR6tdzN vqGQ== 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=Cjiga52muYVxuQl9Mo7GF20icNBMzv+t3Me5z9KiG9A=; b=QzqB54R818Y688sI6AAB3FJzP4z/kP5yy4iEFYTD8sqyM+bVrKdP+GnUxE6nRHjJJS nQsldHhcaZHj1irLvO/G9WAzYf5y4xgDdoKKyI04IWXu3bTYXNtMKUT+6GRtOasG1qqu Wnu5TRrEpiFswy7U/vC2zd1LtPhvRTXveFM5uLumHE1ZrM7uQGQ1umNSIFUeslJ/9F+n OL/Dfu2dCg+y3RZdvAhQZyeXFR5r8z5J/Pp54/Bl/EEXmRtU+IvO1lnhyBW80+AD9Va6 mUPDODebvtHUPAGpUUmKlbDAPQOQuLZ0egAWvKhFP+/9Z/fAtRwZvtHmU6nGvM7JBcCe HtXg== 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 x11si9855192edr.460.2020.09.22.01.26.51; Tue, 22 Sep 2020 01:27:14 -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 S1727348AbgIVFgu (ORCPT + 99 others); Tue, 22 Sep 2020 01:36:50 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:42064 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726495AbgIVFgu (ORCPT ); Tue, 22 Sep 2020 01:36:50 -0400 Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 08M5R1q2016413; Tue, 22 Sep 2020 07:27:01 +0200 Date: Tue, 22 Sep 2020 07:27:01 +0200 From: Willy Tarreau To: poeschel@lemonage.de Cc: Miguel Ojeda Sandonis , open list Subject: Re: [PATCH v2 31/32] auxdisplay: charlcd: Do not print chars at end of line Message-ID: <20200922052701.GB16386@1wt.eu> References: <20191016082430.5955-1-poeschel@lemonage.de> <20200921144645.2061313-1-poeschel@lemonage.de> <20200921144645.2061313-32-poeschel@lemonage.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200921144645.2061313-32-poeschel@lemonage.de> User-Agent: Mutt/1.6.1 (2016-04-27) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 21, 2020 at 04:46:43PM +0200, poeschel@lemonage.de wrote: > From: Lars Poeschel > > Skip printing characters at the end of a display line. This fits to the > behaviour we already had, that the cursor is nailed to last position of > a line. Just very old memories, but wasn't this used with the ability to shift the display ? IIRC the HD44780 has a 2x64 chars buffer and you can make the buffered characters appear when you shift the display. That's akin to seeing the display as an adjustable window over the buffer. I don't remember having used that feature, so if it didn't previously work, please disregard my comment, I just want to be sure we don't break a feature others might be relying on. Willy