From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2998315AbdD2T63 (ORCPT ); Sat, 29 Apr 2017 15:58:29 -0400 Received: from mail-wr0-f175.google.com ([209.85.128.175]:35213 "EHLO mail-wr0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938536AbdD2T6U (ORCPT ); Sat, 29 Apr 2017 15:58:20 -0400 Date: Sat, 29 Apr 2017 20:58:16 +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: Re: [patch 0/6] staging: speakup: migrate synths to use TTY-based comms Message-ID: <20170429195816.GA4135@sanghar> References: <20170429195257.630355823@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170429195257.630355823@gmail.com> User-Agent: Mutt/1.8.2 (2017-04-18) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Forgot to add intro. Following is what I wanted to say: 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: Refactors to make input functionality swappable between serial i/o and tty. This is part of series of previous patches already submitted, which refactor the code in order to pave the way for actual migration to come. Patch 2: Exports tty_open_by_driver in order to allow the speakup to access it. Patch 3: Adds spk_ttyio.c, a container of TTY-based comms. Patch 4: Migrates some synths which use relatively simple comms - output only. Patch 5: Adds more TTY-based functionality that wasn't already added in patch 3. Patch 6: Migrates remaining external synths based. Thanks, Okash