jiffies.c (35728b8209ee7d25b6241a56304ee926469bd154) jiffies.c (6c7811c628a96fe00965622f3aa1cf272cb898f7)
1// SPDX-License-Identifier: GPL-2.0+
1// SPDX-License-Identifier: GPL-2.0+
2/***********************************************************************
3* This file contains the jiffies based clocksource.
4*
5* Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
6*
7* This program is free software; you can redistribute it and/or modify
8* it under the terms of the GNU General Public License as published by
9* the Free Software Foundation; either version 2 of the License, or
10* (at your option) any later version.
11*
12* This program is distributed in the hope that it will be useful,
13* but WITHOUT ANY WARRANTY; without even the implied warranty of
14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15* GNU General Public License for more details.
16*
17* You should have received a copy of the GNU General Public License
18* along with this program; if not, write to the Free Software
19* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20*
21************************************************************************/
2/*
3 * This file contains the jiffies based clocksource.
4 *
5 * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
6 */
22#include <linux/clocksource.h>
23#include <linux/jiffies.h>
24#include <linux/module.h>
25#include <linux/init.h>
26
27#include "timekeeping.h"
28
29

--- 106 unchanged lines hidden ---
7#include <linux/clocksource.h>
8#include <linux/jiffies.h>
9#include <linux/module.h>
10#include <linux/init.h>
11
12#include "timekeeping.h"
13
14

--- 106 unchanged lines hidden ---