Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
553da857
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
553da857
编写于
3月 23, 2010
作者:
K
Krzysztof Hałasa
提交者:
Jason Cooper
11月 22, 2012
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
IXP4xx: HW pseudo-random generator is available on IXP45x/46x only.
Signed-off-by:
N
Krzysztof Hałasa
<
khc@pm.waw.pl
>
上级
87ba5c6a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
4 deletion
+7
-4
drivers/char/hw_random/Kconfig
drivers/char/hw_random/Kconfig
+3
-3
drivers/char/hw_random/ixp4xx-rng.c
drivers/char/hw_random/ixp4xx-rng.c
+4
-1
未找到文件。
drivers/char/hw_random/Kconfig
浏览文件 @
553da857
...
...
@@ -127,12 +127,12 @@ config HW_RANDOM_VIA
If unsure, say Y.
config HW_RANDOM_IXP4XX
tristate "Intel IXP4xx NPU HW Random Number Generator support"
tristate "Intel IXP4xx NPU HW
Pseudo-
Random Number Generator support"
depends on HW_RANDOM && ARCH_IXP4XX
default HW_RANDOM
---help---
This driver provides kernel-side support for the Random
Number Generator hardware found on the Intel IXP4
x
x NPU.
This driver provides kernel-side support for the
Pseudo-
Random
Number Generator hardware found on the Intel IXP4
5x/46
x NPU.
To compile this driver as a module, choose M here: the
module will be called ixp4xx-rng.
...
...
drivers/char/hw_random/ixp4xx-rng.c
浏览文件 @
553da857
...
...
@@ -45,6 +45,9 @@ static int __init ixp4xx_rng_init(void)
void
__iomem
*
rng_base
;
int
err
;
if
(
!
cpu_is_ixp46x
())
/* includes IXP455 */
return
-
ENOSYS
;
rng_base
=
ioremap
(
0x70002100
,
4
);
if
(
!
rng_base
)
return
-
ENOMEM
;
...
...
@@ -68,5 +71,5 @@ module_init(ixp4xx_rng_init);
module_exit
(
ixp4xx_rng_exit
);
MODULE_AUTHOR
(
"Deepak Saxena <dsaxena@plexity.net>"
);
MODULE_DESCRIPTION
(
"H/W
Random Number Generator (RNG) driver for IXP4x
x"
);
MODULE_DESCRIPTION
(
"H/W
Pseudo-Random Number Generator (RNG) driver for IXP45x/46
x"
);
MODULE_LICENSE
(
"GPL"
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录