* [PATCH 6/7] parisc: add parameter to read_cr16()
@ 2009-04-22 19:06 Coly Li
2009-04-22 21:39 ` Helge Deller
0 siblings, 1 reply; 2+ messages in thread
From: Coly Li @ 2009-04-22 19:06 UTC (permalink / raw)
To: LKML; +Cc: Helge Deller, Ingo Molnar
This patch modifies parameter of au1x_counter1_read() from 'void' to 'struct
clocksource *cs', which fixes compile warning for incompatible parameter type.
Signed-off-by: Coly Li <coly.li@suse.de>
Cc: Helge Deller <deller@gmx.de>
Cc: Ingo Molnar <mingo@elte.hu>
---
arch/parisc/kernel/time.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c
index d4dd056..d97d07f 100644
--- a/arch/parisc/kernel/time.c
+++ b/arch/parisc/kernel/time.c
@@ -173,7 +173,7 @@ EXPORT_SYMBOL(profile_pc);
/* clock source code */
-static cycle_t read_cr16(void)
+static cycle_t read_cr16(struct clocksource *cs)
{
return get_cycles();
}
--
Coly Li
SuSE Labs
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 6/7] parisc: add parameter to read_cr16()
2009-04-22 19:06 [PATCH 6/7] parisc: add parameter to read_cr16() Coly Li
@ 2009-04-22 21:39 ` Helge Deller
0 siblings, 0 replies; 2+ messages in thread
From: Helge Deller @ 2009-04-22 21:39 UTC (permalink / raw)
To: coly.li, Kyle McMartin, linux-parisc; +Cc: LKML, Ingo Molnar
Coly Li wrote:
> This patch modifies parameter of au1x_counter1_read() from 'void' to 'struct
> clocksource *cs', which fixes compile warning for incompatible parameter type.
>
> Signed-off-by: Coly Li <coly.li@suse.de>
> Cc: Helge Deller <deller@gmx.de>
Patch is good.
Thanks!
Acked-by: Helge Deller <deller@gmx.de>
> Cc: Ingo Molnar <mingo@elte.hu>
> ---
> arch/parisc/kernel/time.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c
> index d4dd056..d97d07f 100644
> --- a/arch/parisc/kernel/time.c
> +++ b/arch/parisc/kernel/time.c
> @@ -173,7 +173,7 @@ EXPORT_SYMBOL(profile_pc);
>
> /* clock source code */
>
> -static cycle_t read_cr16(void)
> +static cycle_t read_cr16(struct clocksource *cs)
> {
> return get_cycles();
> }
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-04-22 21:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-22 19:06 [PATCH 6/7] parisc: add parameter to read_cr16() Coly Li
2009-04-22 21:39 ` Helge Deller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox