sys_clock: rename timer_read to _sys_clock_cycle_get

Follow coding conventions.

Change-Id: I3ca5d1cf4eaacfc09d5e8c44c49be447549537c8
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
Benjamin Walsh 2015-08-21 16:50:35 -04:00 committed by Anas Nashif
commit 87eeaa3249
12 changed files with 29 additions and 29 deletions

View file

@ -199,7 +199,7 @@ int _sys_clock_driver_init(struct device *device)
* @return up counter of elapsed clock cycles
*/
uint32_t timer_read(void)
uint32_t _sys_clock_cycle_get(void)
{
return (clock_accumulated_count + count_get());
}