Commit 3436089d authored by Anthony Zhou's avatar Anthony Zhou Committed by Varun Wadekar
Browse files

Tegra: delay_timer: fix MISRA defects



Main fixes:

* Include header file for function declarations [Rule 8.4]
* Move global object into function [Rule 8.9]

Change-Id: I1bc9f3f0ebd4ffc0b8444ac856cd97b0cb56bda4
Signed-off-by: default avatarAnthony Zhou <anzhou@nvidia.com>
parent 9a8f05e4
/* /*
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
...@@ -7,23 +7,24 @@ ...@@ -7,23 +7,24 @@
#include <delay_timer.h> #include <delay_timer.h>
#include <mmio.h> #include <mmio.h>
#include <tegra_def.h> #include <tegra_def.h>
#include <tegra_private.h>
static uint32_t tegra_timerus_get_value(void) static uint32_t tegra_timerus_get_value(void)
{ {
return mmio_read_32(TEGRA_TMRUS_BASE); return mmio_read_32(TEGRA_TMRUS_BASE);
} }
static const timer_ops_t tegra_timer_ops = {
.get_timer_value = tegra_timerus_get_value,
.clk_mult = 1,
.clk_div = 1,
};
/* /*
* Initialise the on-chip free rolling us counter as the delay * Initialise the on-chip free rolling us counter as the delay
* timer. * timer.
*/ */
void tegra_delay_timer_init(void) void tegra_delay_timer_init(void)
{ {
static const timer_ops_t tegra_timer_ops = {
.get_timer_value = tegra_timerus_get_value,
.clk_mult = 1,
.clk_div = 1,
};
timer_init(&tegra_timer_ops); timer_init(&tegra_timer_ops);
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment