9
0
Fork 0

MIPS: csrc-r4k: use CLOCKSOURCE_MASK() macro

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2013-12-10 09:10:55 +04:00 committed by Sascha Hauer
parent c6e0120379
commit 992745c989
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static uint64_t c0_hpt_read(void)
static struct clocksource cs = {
.read = c0_hpt_read,
.mask = 0xffffffff,
.mask = CLOCKSOURCE_MASK(32),
};
static int clocksource_init(void)