Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753008AbdCPR2L (ORCPT ); Thu, 16 Mar 2017 13:28:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51536 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752430AbdCPR2I (ORCPT ); Thu, 16 Mar 2017 13:28:08 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com DB276C049D5C Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=msalter@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com DB276C049D5C Message-ID: <1489685286.16432.3.camel@redhat.com> Subject: Re: [PATCH] Revert "tty: serial: pl011: add ttyAMA for matching pl011 console" From: Mark Salter To: Russell King Cc: Greg Kroah-Hartman , linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, Sudeep Holla Date: Thu, 16 Mar 2017 13:28:06 -0400 In-Reply-To: <20170316165134.1501-1-msalter@redhat.com> References: <20170316165134.1501-1-msalter@redhat.com> Organization: Red Hat, Inc Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Thu, 16 Mar 2017 17:28:09 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1558 Lines: 43 On Thu, 2017-03-16 at 12:51 -0400, Mark Salter wrote: > This reverts commit aea9a80ba98a0c9b4de88850260e9fbdcc98360b. I see now that Aleksey already submitted a revert and it is in tty-next, so ignore this. > > It completely breaks PL011 SPCR support (a console=ttyAMA0 is > required to get a console even with a valid SPCR table). > > Aleksey Makarov also noticed this: > >   https://lkml.org/lkml/2017/3/1/324 > > and he is working on a more generalized patch to fix the original > "double printing" problem which this reverted patch was trying to > fix. > >   https://lkml.org/lkml/2017/3/15/223 > > So, let's revert the broken patch and live with the double printing > until Aleksey's patch gets upstream. > > Signed-off-by: Mark Salter > --- >  drivers/tty/serial/amba-pl011.c | 3 +-- >  1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c > index 8789ea4..a81631f 100644 > --- a/drivers/tty/serial/amba-pl011.c > +++ b/drivers/tty/serial/amba-pl011.c > @@ -2373,9 +2373,8 @@ static int __init pl011_console_match(struct console *co, char *name, int idx, >   if (strcmp(name, "qdf2400_e44") == 0) { >   pr_info_once("UART: Working around QDF2400 SoC erratum 44"); >   qdf2400_e44_present = true; > - } else if (strcmp(name, "pl011") != 0 || strcmp(name, "ttyAMA") != 0) { > + } else if (strcmp(name, "pl011") != 0) >   return -ENODEV; > - } >   >   if (uart_parse_earlycon(options, &iotype, &addr, &options)) >   return -ENODEV;