From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AB0721B3736 for ; Thu, 20 Jun 2024 16:58:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=139.178.84.217 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1718902708; cv=none; b=I7x6Cq9caFGmTIzkV8+8FZ9jkem5oOjIY81npBBetzHFyTHCPoefiuPCr9M9N4JuelE1ImEMaDNMRPgG1cde/B2PQEJd3MH28VplyS7Kab/bWJaosudWaskKR2cRA3sm3aTZXQpUy+tHj1Du8oN/ARN+5X0MSzeI1gmOCQnJN/E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1718902708; c=relaxed/simple; bh=qZqI00dgEFB+d6vsEcDd7juPjDQiu90fW9KnfdwVRy8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=HIzq24RqfQpOb2eh+2gee2xTKhtgKyeZ74o4XB+gZv+H8Aovk45wzTIT2xZ/sE5FofD2nQayoZ7vB4ovS/QuvXTsuim7dar02hUnuapraHFBA5WhPQcul1XWn8IjnUnw1Ru69hD7xfxzOG2ucYQH4Mel7MZa12emlJC0XvnJ73M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linuxfoundation.org; spf=pass smtp.mailfrom=linuxfoundation.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pnh/A8Sb; arc=none smtp.client-ip=139.178.84.217 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linuxfoundation.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="pnh/A8Sb" Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id D4B4B621CC; Thu, 20 Jun 2024 16:58:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2B23CC2BD10; Thu, 20 Jun 2024 16:58:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1718902704; bh=qZqI00dgEFB+d6vsEcDd7juPjDQiu90fW9KnfdwVRy8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pnh/A8SbX4d2c5fs0fHM8gKhbZzvmtvsuw3Qd6BeYQKONJoUxPrp+0GzRg1JR8IwZ Nr2qdSH9ooCW4Zp0MoSKWJHRLRBlrAKBDshutbSyCOfo8GB6eGNLDk6+YwGvkmCkVd BECSvBdwivkAjP39rLDS6LVX9mVOD5fIvRv4Qo78= Date: Thu, 20 Jun 2024 18:58:21 +0200 From: Greg Kroah-Hartman To: Jean-Michel Hautbois Cc: Jiri Slaby , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, linux-m68k@lists.linux-m68k.org Subject: Re: [PATCH] tty: mcf: MCF54418 has 10 UARTS Message-ID: <2024062006-squeezing-traffic-cecb@gregkh> References: <20240620-upstream-uart-v1-1-a9d0d95fb19e@yoseli.org> Precedence: bulk X-Mailing-List: linux-m68k@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240620-upstream-uart-v1-1-a9d0d95fb19e@yoseli.org> On Thu, Jun 20, 2024 at 06:29:59PM +0200, Jean-Michel Hautbois wrote: > Most of the colfires have up to 5 UARTs but MCF54418 has up-to 10 ! > Change the maximum value authorized. > > Signed-off-by: Jean-Michel Hautbois > --- > drivers/tty/serial/mcf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/tty/serial/mcf.c b/drivers/tty/serial/mcf.c > index b0604d6da025..58858dd352c5 100644 > --- a/drivers/tty/serial/mcf.c > +++ b/drivers/tty/serial/mcf.c > @@ -462,7 +462,7 @@ static const struct uart_ops mcf_uart_ops = { > .verify_port = mcf_verify_port, > }; > > -static struct mcf_uart mcf_ports[4]; > +static struct mcf_uart mcf_ports[10]; What commit id does this fix? thanks, greg k-h