Gitiles
Code Review
Sign In
gerrit.devboardsforandroid.linaro.org
/
platform
/
external
/
u-boot
/
6f796a9bb4b49f6680580672e9210e810b275f00
/
.
/
arch
/
arm
/
cpu
/
pxa
/
timer.c
blob: 169fed808ba89b7fbda2ebc22fb39b03f0cc01a9 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0+
/*
* Marvell PXA2xx/3xx timer driver
*
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
*/
#include
<common.h>
#include
<asm/io.h>
int
timer_init
(
void
)
{
writel
(
0
,
CONFIG_SYS_TIMER_COUNTER
);
return
0
;
}