Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
9c9ad791
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9c9ad791
编写于
10月 19, 2007
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] time: Delete dead code.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
723ee050
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
59 deletion
+0
-59
arch/mips/kernel/time.c
arch/mips/kernel/time.c
+0
-59
未找到文件。
arch/mips/kernel/time.c
浏览文件 @
9c9ad791
...
...
@@ -39,17 +39,6 @@
#include <irq.h>
/*
* The integer part of the number of usecs per jiffy is taken from tick,
* but the fractional part is not recorded, so we calculate it using the
* initial value of HZ. This aids systems where tick isn't really an
* integer (e.g. for HZ = 128).
*/
#define USECS_PER_JIFFY TICK_SIZE
#define USECS_PER_JIFFY_FRAC ((unsigned long)(u32)((1000000ULL << 32) / HZ))
#define TICK_SIZE (tick_nsec / 1000)
/*
* forward reference
*/
...
...
@@ -213,54 +202,6 @@ void __init __weak plat_timer_setup(struct irqaction *irq)
{
}
#ifdef CONFIG_MIPS_MT_SMTC
DEFINE_PER_CPU
(
struct
clock_event_device
,
smtc_dummy_clockevent_device
);
static
void
smtc_set_mode
(
enum
clock_event_mode
mode
,
struct
clock_event_device
*
evt
)
{
}
static
void
mips_broadcast
(
cpumask_t
mask
)
{
unsigned
int
cpu
;
for_each_cpu_mask
(
cpu
,
mask
)
smtc_send_ipi
(
cpu
,
SMTC_CLOCK_TICK
,
0
);
}
static
void
setup_smtc_dummy_clockevent_device
(
void
)
{
//uint64_t mips_freq = mips_hpt_^frequency;
unsigned
int
cpu
=
smp_processor_id
();
struct
clock_event_device
*
cd
;
cd
=
&
per_cpu
(
smtc_dummy_clockevent_device
,
cpu
);
cd
->
name
=
"SMTC"
;
cd
->
features
=
CLOCK_EVT_FEAT_DUMMY
;
/* Calculate the min / max delta */
cd
->
mult
=
0
;
//div_sc((unsigned long) mips_freq, NSEC_PER_SEC, 32);
cd
->
shift
=
0
;
//32;
cd
->
max_delta_ns
=
0
;
//clockevent_delta2ns(0x7fffffff, cd);
cd
->
min_delta_ns
=
0
;
//clockevent_delta2ns(0x30, cd);
cd
->
rating
=
200
;
cd
->
irq
=
17
;
//-1;
// if (cpu)
// cd->cpumask = CPU_MASK_ALL; // cpumask_of_cpu(cpu);
// else
cd
->
cpumask
=
cpumask_of_cpu
(
cpu
);
cd
->
set_mode
=
smtc_set_mode
;
cd
->
broadcast
=
mips_broadcast
;
clockevents_register_device
(
cd
);
}
#endif
void
__init
time_init
(
void
)
{
plat_time_init
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录