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 8FFD6C43334 for ; Fri, 17 Jun 2022 08:15:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1380679AbiFQIPD (ORCPT ); Fri, 17 Jun 2022 04:15:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52798 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1380002AbiFQIPA (ORCPT ); Fri, 17 Jun 2022 04:15:00 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B395567D36; Fri, 17 Jun 2022 01:14:59 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 4ED6161FA8; Fri, 17 Jun 2022 08:14:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 555DEC3411B; Fri, 17 Jun 2022 08:14:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1655453698; bh=BcesR8rZSyM4ByqxVA2X7+5nZ1ydk3/oB9XEIqKmikU=; h=Date:From:To:Cc:Subject:From; b=bAFIjonXE/UkzMqxJTJnxJE6DsWRB4Xp5Nwbw5hzhNo2pNPzZBhM9x2t69CRSOoo+ CL3Vvkpu2pRFrjB32ajpgxiGlaeDiRAkuiR2byJQDpe8fhJ6fYJiIMnDcZkCfRL4Vj HJPn8ad5IVMPe0n6CbYTNT7Py7yuLqzBLLxhkmvo= Date: Fri, 17 Jun 2022 10:14:56 +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 5.19-rc3 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 f2906aa863381afb0015a9eb7fefad885d4e5a56: Linux 5.19-rc1 (2022-06-05 17:18:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-5.19-rc3 for you to fetch changes up to be03b0651ffd8bab69dfd574c6818b446c0753ce: serial: 8250: Store to lsr_save_flags after lsr read (2022-06-10 13:52:19 +0200) ---------------------------------------------------------------- TTY/Serial driver fixes for 5.19-rc3 Here are some small tty and serial driver fixes for 5.19-rc3 to resolve some reported problems: - 8250 lsr read bugfix - n_gsm line discipline allocation fix - qcom serial driver fix for reported lockups that happened in -rc1 - goldfish tty driver fix All have been in linux-next for a while now with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Ilpo Järvinen (1): serial: 8250: Store to lsr_save_flags after lsr read Tony Lindgren (1): tty: n_gsm: Debug output allocation must use GFP_ATOMIC Vijaya Krishna Nivarthi (2): serial: core: Introduce callback for start_rx and do stop_rx in suspend only if this callback implementation is present. tty: serial: qcom-geni-serial: Implement start_rx callback Vincent Whitchurch (1): tty: goldfish: Fix free_irq() on remove drivers/tty/goldfish.c | 2 +- drivers/tty/n_gsm.c | 2 +- drivers/tty/serial/8250/8250_port.c | 2 ++ drivers/tty/serial/qcom_geni_serial.c | 1 + drivers/tty/serial/serial_core.c | 9 ++++++--- include/linux/serial_core.h | 1 + 6 files changed, 12 insertions(+), 5 deletions(-)