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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 07910C07E9D for ; Sat, 24 Sep 2022 08:23:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233345AbiIXIXw (ORCPT ); Sat, 24 Sep 2022 04:23:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37972 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232228AbiIXIXs (ORCPT ); Sat, 24 Sep 2022 04:23:48 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9D2C325DE; Sat, 24 Sep 2022 01:23:47 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 5123FB80ECF; Sat, 24 Sep 2022 08:23:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 96BE4C433C1; Sat, 24 Sep 2022 08:23:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664007824; bh=MJucUiBD2uBtXMibzIy7JKisKwfId+DiTuUh8qZjI2E=; h=Date:From:To:Cc:Subject:From; b=Lb7TDI122JO7DngyDuWU3FBPJ2q8itUYHEXjundcOdurEiGRpExcGwGHz/1WnAEwU r/zjYXQsYzFlDYN3buwjT9OajQWLElY2bLgOXXcb/J0+G+sFFCbqQN8h9HWrIrRGRR 5UhTx5iqieOdQmMjdGvZJw5GRUbVbITnhXUWeTrw= Date: Sat, 24 Sep 2022 10:23:42 +0200 From: Greg KH To: Linus Torvalds Cc: Jiri Slaby , Stephen Rothwell , Andrew Morton , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org Subject: [GIT PULL] TTY/Serial driver fixes for 6.0-rc7 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 7e18e42e4b280c85b76967a9106a13ca61c16179: Linux 6.0-rc4 (2022-09-04 13:10:01 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-6.0-rc7 for you to fetch changes up to 643792048ee84b199052e9c8f89253649ca78922: serial: sifive: enable clocks for UART when probed (2022-09-22 16:38:18 +0200) ---------------------------------------------------------------- TTY/Serial driver fixes for 6.0-rc7 Here are some small, and late, serial driver fixes for 6.0-rc7 to resolve some reported problems. Included in here are: - tegra icount accounting fixes, including a framework function that other drivers will be converted over to using in 6.1-rc1. - fsl_lpuart reset bugfix - 8250 omap 485 bugfix - sifive serial clock bugfix The last 3 patches have not shown up in linux-next due to them being added to my tree only 2 days ago, but they are tiny and self-contained and the developers say they resolve issues that they have with 6.0-rc. The other 3 have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Ilpo Järvinen (3): serial: Create uart_xmit_advance() serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting Lukas Wunner (1): serial: fsl_lpuart: Reset prior to registration Matthias Schiffer (1): serial: 8250: omap: Use serial8250_em485_supported Olof Johansson (1): serial: sifive: enable clocks for UART when probed drivers/tty/serial/8250/8250_omap.c | 1 + drivers/tty/serial/fsl_lpuart.c | 9 +++++---- drivers/tty/serial/serial-tegra.c | 5 ++--- drivers/tty/serial/sifive.c | 2 +- drivers/tty/serial/tegra-tcu.c | 2 +- include/linux/serial_core.h | 17 +++++++++++++++++ 6 files changed, 27 insertions(+), 9 deletions(-)