uv_time: add parameter to uv_read_rtc()
authorColy Li <coly.li@suse.de>
Wed, 22 Apr 2009 15:21:56 +0000 (23:21 +0800)
committerIngo Molnar <mingo@elte.hu>
Wed, 22 Apr 2009 15:41:25 +0000 (17:41 +0200)
commitc5428e950ad42640f00092949fd17e356dfdeafa
treecd057c47f1e5ae5c27739be27b347d99c85a2106
parent7a6f9cbb37120c745fc187083fb5c3de4dca4f97
uv_time: add parameter to uv_read_rtc()

uv_read_rtc() is referenced by read member of struct clocksource clocksource_uv.
In include/linux/clocksource.h, read of struct clocksource is declared as:
cycle_t (*read)(struct clocksource *cs)

This got introduced recently in:

   8e19608: clocksource: pass clocksource to read() callback

But arch/x86/kernel/uv_time.c was not properly converted by that pach.

This patch adds a dummy parameter (struct clocksource type) to uv_read_rtc() to
fix the incompatible reference in clocksource_uv, and add a NULL parameter in
all places where uv_read_rtc() gets called.

[ Impact: cleanup, address compiler warning ]

Signed-off-by: Coly Li <coly.li@suse.de>
Cc: Dimitri Sivanich <sivanich@sgi.com>
Cc: Magnus Damm <damm@igel.co.jp>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Hugh Dickins <hugh@veritas.com>
LKML-Reference: <49EF3614.1050806@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Dimitri Sivanich <sivanich@sgi.com>
arch/x86/kernel/uv_time.c