All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tushar Behera <tushar.behera@linaro.org>
To: Padmavathi Venna <padma.v@samsung.com>
Cc: padma.kvr@gmail.com, linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, kgene.kim@samsung.com,
	ben-linux@fluff.org, linux@arm.linux.org.uk,
	broonie@opensource.wolfsonmicro.com
Subject: Re: [PATCH V3 4/6] ARM: S5P64X0: Modified files for SPI consolidation work
Date: Wed, 14 Dec 2011 12:03:10 +0530	[thread overview]
Message-ID: <4EE84326.6030903@linaro.org> (raw)
In-Reply-To: <1323875763-21197-5-git-send-email-padma.v@samsung.com>

On 12/14/2011 08:46 PM, Padmavathi Venna wrote:
> As SPI platform devices are consolidated to plat-samsung, some
> corresponding changes are required in the respective machine folder.
> Added SPI Setup file for GPIO configurations and platform data
> initialization.
>
> Signed-off-by: Padmavathi Venna<padma.v@samsung.com>
> ---
>   arch/arm/mach-s5p64x0/Kconfig            |    7 +++-
>   arch/arm/mach-s5p64x0/Makefile           |    1 +
>   arch/arm/mach-s5p64x0/include/mach/map.h |    3 ++
>   arch/arm/mach-s5p64x0/setup-spi.c        |   55 ++++++++++++++++++++++++++++++
>   4 files changed, 64 insertions(+), 2 deletions(-)
>   create mode 100644 arch/arm/mach-s5p64x0/setup-spi.c
>
[snip]
> diff --git a/arch/arm/mach-s5p64x0/include/mach/map.h b/arch/arm/mach-s5p64x0/include/mach/map.h
> index 4d3ac8a..c6af0fc 100644
> --- a/arch/arm/mach-s5p64x0/include/mach/map.h
> +++ b/arch/arm/mach-s5p64x0/include/mach/map.h
> @@ -67,6 +67,8 @@
>   #define S3C_PA_RTC		S5P64X0_PA_RTC
>   #define S3C_PA_WDT		S5P64X0_PA_WDT
>   #define S3C_PA_FB		S5P64X0_PA_FB
> +#define S3C_PA_SPI0		S5P64X0_PA_SPI0
> +#define S3C_PA_SPI1		S5P64X0_PA_SPI1
>
>   #define S5P_PA_CHIPID		S5P64X0_PA_CHIPID
>   #define S5P_PA_SROMC		S5P64X0_PA_SROMC
> @@ -75,6 +77,7 @@
>
>   #define SAMSUNG_PA_ADC		S5P64X0_PA_ADC
>
> +

Unncessary insertion of line.

-- 
Tushar Behera

WARNING: multiple messages have this Message-ID (diff)
From: tushar.behera@linaro.org (Tushar Behera)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 4/6] ARM: S5P64X0: Modified files for SPI consolidation work
Date: Wed, 14 Dec 2011 12:03:10 +0530	[thread overview]
Message-ID: <4EE84326.6030903@linaro.org> (raw)
In-Reply-To: <1323875763-21197-5-git-send-email-padma.v@samsung.com>

On 12/14/2011 08:46 PM, Padmavathi Venna wrote:
> As SPI platform devices are consolidated to plat-samsung, some
> corresponding changes are required in the respective machine folder.
> Added SPI Setup file for GPIO configurations and platform data
> initialization.
>
> Signed-off-by: Padmavathi Venna<padma.v@samsung.com>
> ---
>   arch/arm/mach-s5p64x0/Kconfig            |    7 +++-
>   arch/arm/mach-s5p64x0/Makefile           |    1 +
>   arch/arm/mach-s5p64x0/include/mach/map.h |    3 ++
>   arch/arm/mach-s5p64x0/setup-spi.c        |   55 ++++++++++++++++++++++++++++++
>   4 files changed, 64 insertions(+), 2 deletions(-)
>   create mode 100644 arch/arm/mach-s5p64x0/setup-spi.c
>
[snip]
> diff --git a/arch/arm/mach-s5p64x0/include/mach/map.h b/arch/arm/mach-s5p64x0/include/mach/map.h
> index 4d3ac8a..c6af0fc 100644
> --- a/arch/arm/mach-s5p64x0/include/mach/map.h
> +++ b/arch/arm/mach-s5p64x0/include/mach/map.h
> @@ -67,6 +67,8 @@
>   #define S3C_PA_RTC		S5P64X0_PA_RTC
>   #define S3C_PA_WDT		S5P64X0_PA_WDT
>   #define S3C_PA_FB		S5P64X0_PA_FB
> +#define S3C_PA_SPI0		S5P64X0_PA_SPI0
> +#define S3C_PA_SPI1		S5P64X0_PA_SPI1
>
>   #define S5P_PA_CHIPID		S5P64X0_PA_CHIPID
>   #define S5P_PA_SROMC		S5P64X0_PA_SROMC
> @@ -75,6 +77,7 @@
>
>   #define SAMSUNG_PA_ADC		S5P64X0_PA_ADC
>
> +

Unncessary insertion of line.

-- 
Tushar Behera

  reply	other threads:[~2011-12-14  6:33 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-14 15:15 [PATCH V3 0/6] SPI platform device consolidation Padmavathi Venna
2011-12-14 15:15 ` Padmavathi Venna
2011-12-14 15:15 ` [PATCH V3 1/6] ARM: SAMSUNG: Consolidation of SPI platform devices to plat-samsung Padmavathi Venna
2011-12-14 15:15   ` Padmavathi Venna
2011-12-14 15:15 ` [PATCH V3 2/6] ARM: S3C64XX: Modified files for SPI consolidation work Padmavathi Venna
2011-12-14 15:15   ` Padmavathi Venna
2011-12-14 15:16 ` [PATCH V3 3/6] ARM: S5PC100: " Padmavathi Venna
2011-12-14 15:16   ` Padmavathi Venna
2011-12-14 15:16 ` [PATCH V3 4/6] ARM: S5P64X0: " Padmavathi Venna
2011-12-14 15:16   ` Padmavathi Venna
2011-12-14  6:33   ` Tushar Behera [this message]
2011-12-14  6:33     ` Tushar Behera
2011-12-14 15:16 ` [PATCH V3 5/6] ARM: S5PV210: " Padmavathi Venna
2011-12-14 15:16   ` Padmavathi Venna
2011-12-14 15:16 ` [PATCH V3 6/6] ARM: S3C64XX: Modified according to " Padmavathi Venna
2011-12-14 15:16   ` Padmavathi Venna

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=4EE84326.6030903@linaro.org \
    --to=tushar.behera@linaro.org \
    --cc=ben-linux@fluff.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=padma.kvr@gmail.com \
    --cc=padma.v@samsung.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.