clockevents.c (f43dc23d5ea91fca257be02138a255f02d98e806) clockevents.c (e2830b5c1b2b2217894370a3b95af87d4a958401)
1/*
2 * linux/kernel/time/clockevents.c
3 *
4 * This file contains functions which manage clock event devices.
5 *
6 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
8 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner

--- 4 unchanged lines hidden (view full) ---

13
14#include <linux/clockchips.h>
15#include <linux/hrtimer.h>
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/notifier.h>
19#include <linux/smp.h>
20#include <linux/sysdev.h>
1/*
2 * linux/kernel/time/clockevents.c
3 *
4 * This file contains functions which manage clock event devices.
5 *
6 * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
7 * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
8 * Copyright(C) 2006-2007, Timesys Corp., Thomas Gleixner

--- 4 unchanged lines hidden (view full) ---

13
14#include <linux/clockchips.h>
15#include <linux/hrtimer.h>
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/notifier.h>
19#include <linux/smp.h>
20#include <linux/sysdev.h>
21#include <linux/tick.h>
22
23#include "tick-internal.h"
24
25/* The registered clock event devices */
26static LIST_HEAD(clockevent_devices);
27static LIST_HEAD(clockevents_released);
28
29/* Notification for clock events */

--- 246 unchanged lines hidden ---
21
22#include "tick-internal.h"
23
24/* The registered clock event devices */
25static LIST_HEAD(clockevent_devices);
26static LIST_HEAD(clockevents_released);
27
28/* Notification for clock events */

--- 246 unchanged lines hidden ---