From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752754Ab1HJDcU (ORCPT ); Tue, 9 Aug 2011 23:32:20 -0400 Received: from mail.savoirfairelinux.com ([209.172.62.77]:58927 "EHLO mail.savoirfairelinux.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752558Ab1HJDcR convert rfc822-to-8bit (ORCPT ); Tue, 9 Aug 2011 23:32:17 -0400 Date: Tue, 9 Aug 2011 23:32:08 -0400 From: Vivien Didelot To: Vivien Didelot Cc: linux-kernel@vger.kernel.org, mjg@redhat.com, platform-driver-x86@vger.kernel.org Subject: Re: [RESEND][PATCH 0/5] Support for the TS-5500 board Message-ID: <20110809233208.1a71122e@lenov0n> In-Reply-To: <1311887450-22235-1-git-send-email-vivien.didelot@savoirfairelinux.com> References: <1311887450-22235-1-git-send-email-vivien.didelot@savoirfairelinux.com> Organization: Savoir-faire Linux Inc. X-Mailer: Claws Mail 3.7.9 (GTK+ 2.24.4; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le Thu, 28 Jul 2011 17:10:45 -0400, Vivien Didelot a écrit : > This set of patches brings the support for the Technologic Systems > TS-5500 Single Board Computer. > > The first patch adds the base for the support of the board in > /arch/x86/platform/ts5500 and a documentation file in > Documentation/ABI/testing/sysfs-platform-ts5500. > > The second patch adds support for GPIO. > > The third patch adds support for the on-board LED. > > The fourth patch brings support for the Analogic/Digital converter. > > The fifth patch moves the already existing support for the Flash MTD > into the /arch/x86/platform/ts5500 directory. > > Jerome Oufella (1): > gpio: add support for TS-5500 GPIO > > Jonas Fonseca (2): > leds: add support for TS-5500 LED > adc: add support for TS-5500 ADC > > Vivien Didelot (2): > x86: base support for TS-5500 Single Board Computer > mtd: move support for TS-5500 MTD > > Documentation/ABI/testing/sysfs-platform-ts5500 | 46 +++ > MAINTAINERS | 13 + > arch/x86/Kconfig | 2 + > arch/x86/platform/Makefile | 1 + > arch/x86/platform/ts5500/Kconfig | 47 +++ > arch/x86/platform/ts5500/Makefile | 5 + > arch/x86/platform/ts5500/ts5500.c | 440 > +++++++++++++++++++++++ > arch/x86/platform/ts5500/ts5500_adc.c | 326 > +++++++++++++++++ arch/x86/platform/ts5500/ts5500_adc.h | > 62 ++++ arch/x86/platform/ts5500/ts5500_flash.c | 118 ++++++ > arch/x86/platform/ts5500/ts5500_gpio.c | 421 > ++++++++++++++++++++++ > arch/x86/platform/ts5500/ts5500_gpio.h | 60 +++ > arch/x86/platform/ts5500/ts5500_leds.c | 133 +++++++ > drivers/mtd/maps/Kconfig | 18 - > drivers/mtd/maps/Makefile | 1 - > drivers/mtd/maps/ts5500_flash.c | 121 ------- 16 > files changed, 1674 insertions(+), 140 deletions(-) create mode > 100644 Documentation/ABI/testing/sysfs-platform-ts5500 create mode > 100644 arch/x86/platform/ts5500/Kconfig create mode 100644 > arch/x86/platform/ts5500/Makefile create mode 100644 > arch/x86/platform/ts5500/ts5500.c create mode 100644 > arch/x86/platform/ts5500/ts5500_adc.c create mode 100644 > arch/x86/platform/ts5500/ts5500_adc.h create mode 100644 > arch/x86/platform/ts5500/ts5500_flash.c create mode 100644 > arch/x86/platform/ts5500/ts5500_gpio.c create mode 100644 > arch/x86/platform/ts5500/ts5500_gpio.h create mode 100644 > arch/x86/platform/ts5500/ts5500_leds.c delete mode 100644 > drivers/mtd/maps/ts5500_flash.c > This set of patches has been sent two times without any answer yet. Can I have any feedback please? Regards, Vivien.