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 B1A07C004D4 for ; Sat, 21 Jan 2023 15:29:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229825AbjAUP3a (ORCPT ); Sat, 21 Jan 2023 10:29:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48036 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229787AbjAUP31 (ORCPT ); Sat, 21 Jan 2023 10:29:27 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 95B962CFDB; Sat, 21 Jan 2023 07:29:15 -0800 (PST) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 1D66760B3D; Sat, 21 Jan 2023 15:29:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2DCB8C433EF; Sat, 21 Jan 2023 15:29:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1674314954; bh=5bscMmtzS4ZRjroRjKGURyNoErlZmoSg56KVpMFQZSM=; h=Date:From:To:Cc:Subject:From; b=mXe0uKol6PUWi+6v+ZEwGiSgMSyGViYjsaXWps/jf73Ed0/eYFxEczA3n/PMKiJ5A 0kmK5xpWrwon3awi7rxzurwJXdsgNCYwxtFeA0abnHOGkLbqEFg+YGezLl74R9dGVo t50Onfrr6JIvoPjCvAx5JrMfzgSOjqrrQBa0aEow= Date: Sat, 21 Jan 2023 16:29:11 +0100 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.2-rc5 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 5dc4c995db9eb45f6373a956eb1f69460e69e6d4: Linux 6.2-rc4 (2023-01-15 09:22:43 -0600) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-6.2-rc5 for you to fetch changes up to 14ee78d5932afeb710c8305196a676a715bfdea8: serial: exar: Add support for Sealevel 7xxxC serial cards (2023-01-20 13:38:38 +0100) ---------------------------------------------------------------- TTY/Serial driver fixes for 6.2-rc5 Here are some small tty and serial driver fixes for 6.2-rc5 that resolve a number of tiny reported issues and some new device ids. They include: - new device id for the exar serial driver - speakup tty driver bugfix - atmel serial driver baudrate fixup - stm32 serial driver bugfix and then revert as the bugfix broke the build. That will come back in a later pull request once it is all worked out properly. - amba-pl011 serial driver rs486 mode bugfix - qcom_geni serial driver bugfix Most of these have been in linux-next with no reported problems (well, other than the build breakage which generated the revert), the new device id passed 0-day testing. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Arnd Bergmann (1): tty: serial: qcom_geni: avoid duplicate struct member init Gaosheng Cui (1): tty: fix possible null-ptr-defer in spk_ttyio_release Greg Kroah-Hartman (1): Revert "serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ handler" Ilpo Järvinen (1): serial: pch_uart: Pass correct sg to dma_unmap_sg() Krzysztof Kozlowski (1): tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer Lino Sanfilippo (1): serial: amba-pl011: fix high priority character transmission in rs486 mode Marek Vasut (1): serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ handler Matthew Howell (1): serial: exar: Add support for Sealevel 7xxxC serial cards Tobias Schramm (1): serial: atmel: fix incorrect baudrate setup drivers/accessibility/speakup/spk_ttyio.c | 3 +++ drivers/tty/serial/8250/8250_exar.c | 14 ++++++++++++++ drivers/tty/serial/amba-pl011.c | 8 ++++---- drivers/tty/serial/atmel_serial.c | 8 +------- drivers/tty/serial/pch_uart.c | 2 +- drivers/tty/serial/qcom_geni_serial.c | 32 +++++++++++++++++++++++-------- 6 files changed, 47 insertions(+), 20 deletions(-)