Message ID | 20210407103925.829-1-johan@kernel.org (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-usb-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 30725C433ED for <linux-usb@archiver.kernel.org>; Wed, 7 Apr 2021 10:39:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F0C7A613B3 for <linux-usb@archiver.kernel.org>; Wed, 7 Apr 2021 10:39:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234926AbhDGKkA (ORCPT <rfc822;linux-usb@archiver.kernel.org>); Wed, 7 Apr 2021 06:40:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:48954 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233718AbhDGKj7 (ORCPT <rfc822;linux-usb@vger.kernel.org>); Wed, 7 Apr 2021 06:39:59 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 06AD3613A0; Wed, 7 Apr 2021 10:39:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1617791990; bh=vXi6EZ5Y2mHzlJnd1Cdr7bE3o2xIcpNUrfb+ef8l96U=; h=From:To:Cc:Subject:Date:From; b=VuxvPQLFGuSeIuofyflrGKfb0z0ZFlLV2PD0hkXEQnaW1yRIr81hnEM/AdQPrRa2v /SHsaxG9qUq8vVAVPPcMi8nAgXcoFlQcPnVPZGIqvmhg4C0Q0nXcXRAAK3GdnyhNZI XWA0G5asiLG7LuydLdw4LixVHijlb6cIPrz3f0LoV5axruDM3sRvpldX0MwRo+LoHa Hzmo+8aaM4jiHdtR7w2ZjHl8nOHBYqfPm5NxkyJFKBCHp8r+f49qxobDW092xYiChX S/dBjHDBbtsG4QCYIZfdXTDZxQPWTPUNVWPKfPEKijZ5gxADxBPv/vEEZ7l/q6oLgv fYud+zzEe+ZqQ== Received: from johan by xi.lan with local (Exim 4.93.0.4) (envelope-from <johan@kernel.org>) id 1lU5b4-0000EX-67; Wed, 07 Apr 2021 12:39:42 +0200 From: Johan Hovold <johan@kernel.org> To: Johan Hovold <johan@kernel.org> Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 00/24] USB: serial: TIOCSSERIAL fixes and generic support Date: Wed, 7 Apr 2021 12:39:01 +0200 Message-Id: <20210407103925.829-1-johan@kernel.org> X-Mailer: git-send-email 2.26.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <linux-usb.vger.kernel.org> X-Mailing-List: linux-usb@vger.kernel.org |
Series |
USB: serial: TIOCSSERIAL fixes and generic support
|
expand
|
On Wed, Apr 07, 2021 at 12:39:01PM +0200, Johan Hovold wrote: > TIOCSSERIAL is a horrid, underspecified, legacy interface which for most > serial devices is only useful for setting the close_delay and > closing_wait parameters. > > This series fixes up the various USB serial driver implementations, > before adding generic support to core for the benefit of all USB serial > drivers. Nice fixes! Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>