Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
03ead842
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看板
提交
03ead842
编写于
11月 07, 2005
作者:
T
Thomas Gleixner
提交者:
Thomas Gleixner
11月 07, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[LIB] reed_solomon: Clean up trailing white spaces
上级
182ec4ee
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
72 addition
and
72 deletion
+72
-72
include/linux/rslib.h
include/linux/rslib.h
+14
-14
lib/reed_solomon/Makefile
lib/reed_solomon/Makefile
+1
-1
lib/reed_solomon/decode_rs.c
lib/reed_solomon/decode_rs.c
+18
-18
lib/reed_solomon/encode_rs.c
lib/reed_solomon/encode_rs.c
+7
-7
lib/reed_solomon/reed_solomon.c
lib/reed_solomon/reed_solomon.c
+32
-32
未找到文件。
include/linux/rslib.h
浏览文件 @
03ead842
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
* RS code lifted from reed solomon library written by Phil Karn
* RS code lifted from reed solomon library written by Phil Karn
* Copyright 2002 Phil Karn, KA9Q
* Copyright 2002 Phil Karn, KA9Q
*
*
* $Id: rslib.h,v 1.
3 2004/10/05 22:08:2
2 gleixner Exp $
* $Id: rslib.h,v 1.
4 2005/11/07 11:14:5
2 gleixner Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* it under the terms of the GNU General Public License version 2 as
...
...
lib/reed_solomon/Makefile
浏览文件 @
03ead842
lib/reed_solomon/decode_rs.c
浏览文件 @
03ead842
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
* Adaption to the kernel by Thomas Gleixner (tglx@linutronix.de)
* Adaption to the kernel by Thomas Gleixner (tglx@linutronix.de)
*
*
* $Id: decode_rs.c,v 1.
6 2004/10/22 15:41:47
gleixner Exp $
* $Id: decode_rs.c,v 1.
7 2005/11/07 11:14:59
gleixner Exp $
*
*
*/
*/
...
...
lib/reed_solomon/encode_rs.c
浏览文件 @
03ead842
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
* Adaption to the kernel by Thomas Gleixner (tglx@linutronix.de)
* Adaption to the kernel by Thomas Gleixner (tglx@linutronix.de)
*
*
* $Id: encode_rs.c,v 1.
4 2004/10/22 15:41:47
gleixner Exp $
* $Id: encode_rs.c,v 1.
5 2005/11/07 11:14:59
gleixner Exp $
*
*
*/
*/
...
...
lib/reed_solomon/reed_solomon.c
浏览文件 @
03ead842
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
* Reed Solomon code lifted from reed solomon library written by Phil Karn
* Reed Solomon code lifted from reed solomon library written by Phil Karn
* Copyright 2002 Phil Karn, KA9Q
* Copyright 2002 Phil Karn, KA9Q
*
*
* $Id: rslib.c,v 1.
5 2004/10/22 15:41:47
gleixner Exp $
* $Id: rslib.c,v 1.
7 2005/11/07 11:14:59
gleixner Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* it under the terms of the GNU General Public License version 2 as
...
@@ -198,7 +198,7 @@ struct rs_control *init_rs(int symsize, int gfpoly, int fcr, int prim,
...
@@ -198,7 +198,7 @@ struct rs_control *init_rs(int symsize, int gfpoly, int fcr, int prim,
return
NULL
;
return
NULL
;
if
(
prim
<=
0
||
prim
>=
(
1
<<
symsize
))
if
(
prim
<=
0
||
prim
>=
(
1
<<
symsize
))
return
NULL
;
return
NULL
;
if
(
nroots
<
0
||
nroots
>=
(
1
<<
symsize
)
||
nroots
>
8
)
if
(
nroots
<
0
||
nroots
>=
(
1
<<
symsize
))
return
NULL
;
return
NULL
;
down
(
&
rslistlock
);
down
(
&
rslistlock
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录