From: Ben Dooks <ben-linux@fluff.org>
To: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: 'Kukjin Kim' <kgene.kim@samsung.com>,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
'Abhilash Kesavan' <a.kesavan@samsung.com>,
'Thomas Abraham' <thomas.ab@samsung.com>,
ben-linux@fluff.org
Subject: Re: [PATCH] ARM: S5PC100: Modified the clock code to conform to Samsung clock API.
Date: Thu, 13 May 2010 08:28:29 +0100 [thread overview]
Message-ID: <20100513072829.GA27571@trinity.fluff.org> (raw)
In-Reply-To: <005101caf268$1f852320$5e8f6960$%szyprowski@samsung.com>
On Thu, May 13, 2010 at 08:47:10AM +0200, Marek Szyprowski wrote:
> Hello,
>
> On Thursday, May 13, 2010 3:10 AM Kukjin Kim wrote:
>
> > From: Thomas Abraham <thomas.ab@samsung.com>
> >
> > Re-worked the existing clock code for Samsung's S5PC100 SoC to be in
> > sync with new clock API.
> >
> > Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
> > Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> > Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> > ---
> > arch/arm/mach-s5pc100/Makefile | 2 +-
> > arch/arm/mach-s5pc100/clock.c | 1368
> > +++++++++++++++++++++++
> > arch/arm/mach-s5pc100/include/mach/regs-clock.h | 71 ++
> > arch/arm/plat-s5p/clock.c | 2 +-
> > arch/arm/plat-s5p/include/plat/pll.h | 22 +
> > arch/arm/plat-s5p/include/plat/s5p-clock.h | 2 +
> > 6 files changed, 1465 insertions(+), 2 deletions(-)
> > create mode 100755 arch/arm/mach-s5pc100/clock.c
> > create mode 100644 arch/arm/mach-s5pc100/include/mach/regs-clock.h
> >
> > diff --git a/arch/arm/mach-s5pc100/Makefile b/arch/arm/mach-
> > s5pc100/Makefile
> > index 809ff10..8540509 100644
> > --- a/arch/arm/mach-s5pc100/Makefile
> > +++ b/arch/arm/mach-s5pc100/Makefile
> > @@ -11,7 +11,7 @@ obj- :=
> >
> > # Core support for S5PC100 system
> >
> > -obj-$(CONFIG_CPU_S5PC100) += cpu.o
> > +obj-$(CONFIG_CPU_S5PC100) += cpu.o clock.o
>
> This currently causes a build break.
would be nice to show what the build break is...
> Anyway, I will try to use this patch as a base for my s5pc100 patch
> series.
>
> > ...
>
> Best regards
> --
> Marek Szyprowski
> Samsung Poland R&D Center
>
>
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
WARNING: multiple messages have this Message-ID (diff)
From: ben-linux@fluff.org (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: S5PC100: Modified the clock code to conform to Samsung clock API.
Date: Thu, 13 May 2010 08:28:29 +0100 [thread overview]
Message-ID: <20100513072829.GA27571@trinity.fluff.org> (raw)
In-Reply-To: <005101caf268$1f852320$5e8f6960$%szyprowski@samsung.com>
On Thu, May 13, 2010 at 08:47:10AM +0200, Marek Szyprowski wrote:
> Hello,
>
> On Thursday, May 13, 2010 3:10 AM Kukjin Kim wrote:
>
> > From: Thomas Abraham <thomas.ab@samsung.com>
> >
> > Re-worked the existing clock code for Samsung's S5PC100 SoC to be in
> > sync with new clock API.
> >
> > Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
> > Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> > Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> > ---
> > arch/arm/mach-s5pc100/Makefile | 2 +-
> > arch/arm/mach-s5pc100/clock.c | 1368
> > +++++++++++++++++++++++
> > arch/arm/mach-s5pc100/include/mach/regs-clock.h | 71 ++
> > arch/arm/plat-s5p/clock.c | 2 +-
> > arch/arm/plat-s5p/include/plat/pll.h | 22 +
> > arch/arm/plat-s5p/include/plat/s5p-clock.h | 2 +
> > 6 files changed, 1465 insertions(+), 2 deletions(-)
> > create mode 100755 arch/arm/mach-s5pc100/clock.c
> > create mode 100644 arch/arm/mach-s5pc100/include/mach/regs-clock.h
> >
> > diff --git a/arch/arm/mach-s5pc100/Makefile b/arch/arm/mach-
> > s5pc100/Makefile
> > index 809ff10..8540509 100644
> > --- a/arch/arm/mach-s5pc100/Makefile
> > +++ b/arch/arm/mach-s5pc100/Makefile
> > @@ -11,7 +11,7 @@ obj- :=
> >
> > # Core support for S5PC100 system
> >
> > -obj-$(CONFIG_CPU_S5PC100) += cpu.o
> > +obj-$(CONFIG_CPU_S5PC100) += cpu.o clock.o
>
> This currently causes a build break.
would be nice to show what the build break is...
> Anyway, I will try to use this patch as a base for my s5pc100 patch
> series.
>
> > ...
>
> Best regards
> --
> Marek Szyprowski
> Samsung Poland R&D Center
>
>
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
next prev parent reply other threads:[~2010-05-13 7:28 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-13 1:10 [PATCH] ARM: S5PC100: Modified the clock code to conform to Samsung clock API Kukjin Kim
2010-05-13 1:10 ` Kukjin Kim
2010-05-13 1:32 ` Ben Dooks
2010-05-13 1:32 ` Ben Dooks
2010-05-13 6:47 ` Marek Szyprowski
2010-05-13 6:47 ` Marek Szyprowski
2010-05-13 7:28 ` Ben Dooks [this message]
2010-05-13 7:28 ` Ben Dooks
2010-05-13 9:16 ` Marek Szyprowski
2010-05-13 9:16 ` Marek Szyprowski
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=20100513072829.GA27571@trinity.fluff.org \
--to=ben-linux@fluff.org \
--cc=a.kesavan@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=thomas.ab@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.