All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene.kim@samsung.com>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: 'Padmavathi Venna' <padma.v@samsung.com>,
	padma.kvr@gmail.com, linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, ben-linux@fluff.org,
	linux@arm.linux.org.uk
Subject: Re: [PATCH V3 0/4]: ARM: SAMSUNG: Add SPI clkdev support
Date: Mon, 24 Oct 2011 17:19:12 +0200	[thread overview]
Message-ID: <4EA581F0.6000605@samsung.com> (raw)
In-Reply-To: <039c01cc8730$fb130750$f13915f0$%kim@samsung.com>

On 10/10/11 11:42, Kukjin Kim wrote:
> Padmavathi Venna wrote:
>>
>> This patchset modifies the existing clkdev to make SPI driver
>> independent of the clock names send from platform data. This
>> patches enables the SPI driver to request SPI bus clocks
>> using generic connection ID.
>>
>> V1 patch series are:
>> 	http://www.spinics.net/lists/arm-kernel/msg141671.html
>>
>> Changes since V1:
>> 	-Add newly introduced CLKDEV_INIT macro for creating clk_lookup
>> 	structure as suggested by Russell King
>> 	V2 patches series are:
>> 	http://www.spinics.net/lists/arm-kernel/msg142733.html
>>
>> Changes since V2:
>> 	-Reworked the patches as per the following link. Patch series in
>> 	the following link removed&  and , from the macro declaration and
> added
>> 	in the macro defination.
>> 	http://www.spinics.net/lists/arm-kernel/msg143663.html
>>
>> Padmavathi Venna (4):
>>    ARM: S3C64XX: Add SPI clkdev support
>>    ARM: S5PC100: Add SPI clkdev support
>>    ARM: S5P64X0: Add SPI clkdev support
>>    ARM: S5PV210: Add SPI clkdev support
>>
>>   arch/arm/mach-s3c64xx/clock.c         |   98 ++++++++++++++++--------
>>   arch/arm/mach-s5p64x0/clock-s5p6440.c |   57 +++++++++-----
>>   arch/arm/mach-s5p64x0/clock-s5p6450.c |   57 +++++++++-----
>>   arch/arm/mach-s5pc100/clock.c         |  132 ++++++++++++++++++++--------
>> -----
>>   arch/arm/mach-s5pv210/clock.c         |   58 ++++++++++-----
>>   5 files changed, 259 insertions(+), 143 deletions(-)
>>
>> --
>> 1.7.4.4
> Looks ok but this needs 'CLKDEV_INIT' patch. Please wait until it can be
> sent to upstream for this patch.
>
Padmavathi,

As I said, this looks ok and can be applied now.

Could you please rework this based on my next-samsung-dt branch which 
includes device tree patches so that I can apply this easily for v3.2?

If any problems, please let me know.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 0/4]: ARM: SAMSUNG: Add SPI clkdev support
Date: Mon, 24 Oct 2011 17:19:12 +0200	[thread overview]
Message-ID: <4EA581F0.6000605@samsung.com> (raw)
In-Reply-To: <039c01cc8730$fb130750$f13915f0$%kim@samsung.com>

On 10/10/11 11:42, Kukjin Kim wrote:
> Padmavathi Venna wrote:
>>
>> This patchset modifies the existing clkdev to make SPI driver
>> independent of the clock names send from platform data. This
>> patches enables the SPI driver to request SPI bus clocks
>> using generic connection ID.
>>
>> V1 patch series are:
>> 	http://www.spinics.net/lists/arm-kernel/msg141671.html
>>
>> Changes since V1:
>> 	-Add newly introduced CLKDEV_INIT macro for creating clk_lookup
>> 	structure as suggested by Russell King
>> 	V2 patches series are:
>> 	http://www.spinics.net/lists/arm-kernel/msg142733.html
>>
>> Changes since V2:
>> 	-Reworked the patches as per the following link. Patch series in
>> 	the following link removed&  and , from the macro declaration and
> added
>> 	in the macro defination.
>> 	http://www.spinics.net/lists/arm-kernel/msg143663.html
>>
>> Padmavathi Venna (4):
>>    ARM: S3C64XX: Add SPI clkdev support
>>    ARM: S5PC100: Add SPI clkdev support
>>    ARM: S5P64X0: Add SPI clkdev support
>>    ARM: S5PV210: Add SPI clkdev support
>>
>>   arch/arm/mach-s3c64xx/clock.c         |   98 ++++++++++++++++--------
>>   arch/arm/mach-s5p64x0/clock-s5p6440.c |   57 +++++++++-----
>>   arch/arm/mach-s5p64x0/clock-s5p6450.c |   57 +++++++++-----
>>   arch/arm/mach-s5pc100/clock.c         |  132 ++++++++++++++++++++--------
>> -----
>>   arch/arm/mach-s5pv210/clock.c         |   58 ++++++++++-----
>>   5 files changed, 259 insertions(+), 143 deletions(-)
>>
>> --
>> 1.7.4.4
> Looks ok but this needs 'CLKDEV_INIT' patch. Please wait until it can be
> sent to upstream for this patch.
>
Padmavathi,

As I said, this looks ok and can be applied now.

Could you please rework this based on my next-samsung-dt branch which 
includes device tree patches so that I can apply this easily for v3.2?

If any problems, please let me know.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

  reply	other threads:[~2011-10-24 15:19 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-10  8:03 [PATCH V3 0/4]: ARM: SAMSUNG: Add SPI clkdev support Padmavathi Venna
2011-10-10  8:03 ` Padmavathi Venna
2011-10-10  8:03 ` [PATCH V3 1/4] ARM: S3C64XX: " Padmavathi Venna
2011-10-10  8:03   ` Padmavathi Venna
2011-10-10  8:03 ` [PATCH V3 2/4] ARM: S5PC100: " Padmavathi Venna
2011-10-10  8:03   ` Padmavathi Venna
2011-10-10  8:03 ` [PATCH V3 3/4] ARM: S5P64X0: " Padmavathi Venna
2011-10-10  8:03   ` Padmavathi Venna
2011-10-10  8:03 ` [PATCH V3 4/4] ARM: S5PV210: " Padmavathi Venna
2011-10-10  8:03   ` Padmavathi Venna
2011-10-10  9:42 ` [PATCH V3 0/4]: ARM: SAMSUNG: " Kukjin Kim
2011-10-10  9:42   ` Kukjin Kim
2011-10-24 15:19   ` Kukjin Kim [this message]
2011-10-24 15:19     ` Kukjin Kim

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=4EA581F0.6000605@samsung.com \
    --to=kgene.kim@samsung.com \
    --cc=ben-linux@fluff.org \
    --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.