From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759128AbYDALmg (ORCPT ); Tue, 1 Apr 2008 07:42:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757780AbYDALm2 (ORCPT ); Tue, 1 Apr 2008 07:42:28 -0400 Received: from py-out-1112.google.com ([64.233.166.179]:26716 "EHLO py-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757486AbYDALm1 (ORCPT ); Tue, 1 Apr 2008 07:42:27 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=md+mFrHR26kPoZt/xiqpB/XrKg80WSKvNs+Q3IcGHO5fCL6GRyj7t7JwjS1acrIwlwCEIoBDNDyJQ/S9ZNCgFRTMnQJsKiUP1M04bacS2IM2LRzlYbuAPiGs6ngMyQiu2rQof2AlHfrSNCFA8/npJ6oenDQKwYtfYksSBtvwDv4= Message-ID: Date: Tue, 1 Apr 2008 15:42:26 +0400 From: Dmitry To: "Andrew Morton" , "Dmitry Torokhov" , "Jiri Kosina" , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, "Hans-Christian Egtvedt" , "Liam Girdwood" , "Graeme Gregory" , "Dmitry Baryshkov" , "Rodolfo Giometti" , "Russell King" , "Marc Kleine-Budde" , "Pete MacKay" , "Ian Molton" , "Vince Sanders" , "Andrew Zabolotny" Subject: Re: WM97xx touchscreen drivers In-Reply-To: <20080401102825.GA30868@rakim.wolfsonmicro.main> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20080401102825.GA30868@rakim.wolfsonmicro.main> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, 2008/4/1, Mark Brown : > This patch series adds support for the touchscreen controllers found in > WM97xx devices. This revision of the series fixes some races when > closing an active device and fixes a shadowed variable. > > This patch series is also available in the git repository at: > > git://opensource.wolfsonmicro.com/linux-2.6-touch upstream Changelog since last repost? > > Mark Brown (6): > Core driver for WM97xx touchscreens > Add chip driver for WM9705 touchscreen > Add chip driver for WM9712 touchscreen > Add chip driver for WM9713 touchscreen > Driver for WM97xx touchscreens in streaming mode on Mainstone > Build system and MAINTAINERS entry for WM97xx touchscreen drivers > > MAINTAINERS | 10 + > drivers/input/touchscreen/Kconfig | 52 ++ > drivers/input/touchscreen/Makefile | 7 + > drivers/input/touchscreen/mainstone-wm97xx.c | 300 ++++++++++ > drivers/input/touchscreen/wm9705.c | 352 ++++++++++++ > drivers/input/touchscreen/wm9712.c | 461 +++++++++++++++ > drivers/input/touchscreen/wm9713.c | 459 +++++++++++++++ > drivers/input/touchscreen/wm97xx-core.c | 786 ++++++++++++++++++++++++++ > include/linux/wm97xx.h | 311 ++++++++++ > 9 files changed, 2738 insertions(+), 0 deletions(-) > create mode 100644 drivers/input/touchscreen/mainstone-wm97xx.c > create mode 100644 drivers/input/touchscreen/wm9705.c > create mode 100644 drivers/input/touchscreen/wm9712.c > create mode 100644 drivers/input/touchscreen/wm9713.c > create mode 100644 drivers/input/touchscreen/wm97xx-core.c > create mode 100644 include/linux/wm97xx.h > -- With best wishes Dmitry