From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933819AbdEOR4R (ORCPT ); Mon, 15 May 2017 13:56:17 -0400 Received: from mail-wm0-f65.google.com ([74.125.82.65]:36695 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933241AbdEOR4N (ORCPT ); Mon, 15 May 2017 13:56:13 -0400 Message-Id: <20170515174531.968330974@gmail.com> User-Agent: quilt/0.65 Date: Mon, 15 May 2017 18:45:31 +0100 From: Okash Khawaja To: Greg Kroah-Hartman , Jiri Slaby , Samuel Thibault , linux-kernel@vger.kernel.org Cc: William Hubbs , Chris Brannon , Kirk Reiser , speakup@linux-speakup.org, devel@driverdev.osuosl.org Subject: [patch v2 0/6] staging: speakup: migrate synths to use TTY-based comms Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset migrates all external synths from using raw serial i/o to using tty-based comms. The synths not migrated are internal ones - plugged directly into motherboard, communicating over ISA etc. It's important to note that these patches access TTY from inside kernel. Here is the summary of the patches in this set. Patch 1: Exports tty_open_by_driver in order to allow the speakup to access it. Patch 2: Adds spk_ttyio.c, a container of TTY-based comms. Patch 3: Migrates some synths which use relatively simple comms - output only. Patch 4: Adds more TTY-based functionality that wasn't already added in patch 2. Patch 5: Migrates remaining external synths based. Patch 6: Contains these fixes: flushing TTY buffers and ensuring hardware flow control. Thanks, Okash