mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
To: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
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
Date: Tue, 9 Aug 2011 23:32:08 -0400	[thread overview]
Message-ID: <20110809233208.1a71122e@lenov0n> (raw)
In-Reply-To: <1311887450-22235-1-git-send-email-vivien.didelot@savoirfairelinux.com>

Le Thu, 28 Jul 2011 17:10:45 -0400,
Vivien Didelot <vivien.didelot@savoirfairelinux.com> 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.

  parent reply	other threads:[~2011-08-10  3:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-28 21:10 Vivien Didelot
2011-07-28 21:10 ` [RESEND][PATCH 1/5] x86: base support for TS-5500 Single Board Computer Vivien Didelot
2011-07-28 21:10 ` [RESEND][PATCH 2/5] gpio: add support for TS-5500 GPIO Vivien Didelot
2011-07-28 21:10 ` [RESEND][PATCH 3/5] leds: add support for TS-5500 LED Vivien Didelot
2011-07-28 21:10 ` [RESEND][PATCH 4/5] adc: add support for TS-5500 ADC Vivien Didelot
2011-07-28 21:10 ` [RESEND][PATCH 5/5] mtd: move support for TS-5500 MTD Vivien Didelot
2011-08-10  3:32 ` Vivien Didelot [this message]
2011-08-10  5:53   ` [RESEND][PATCH 0/5] Support for the TS-5500 board Ike Panhc
2011-08-10  6:18     ` Corentin Chary
2011-08-10 14:06       ` Vivien Didelot
2011-08-10 14:20         ` David Woodhouse
2011-08-10 19:09           ` Vivien Didelot
2011-08-12 14:26             ` Vivien Didelot
2011-08-24 13:42               ` Matthew Garrett
2011-08-24 15:16                 ` Vivien Didelot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110809233208.1a71122e@lenov0n \
    --to=vivien.didelot@savoirfairelinux.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mjg@redhat.com \
    --cc=platform-driver-x86@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome