Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
03ead842
Commit
03ead842
authored
Nov 07, 2005
by
Thomas Gleixner
Committed by
Thomas Gleixner
Nov 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[LIB] reed_solomon: Clean up trailing white spaces
parent
182ec4ee
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
72 additions
and
72 deletions
+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
No files found.
include/linux/rslib.h
View file @
03ead842
...
...
@@ -9,7 +9,7 @@
* RS code lifted from reed solomon library written by Phil Karn
* 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
* it under the terms of the GNU General Public License version 2 as
...
...
lib/reed_solomon/Makefile
View file @
03ead842
lib/reed_solomon/decode_rs.c
View file @
03ead842
...
...
@@ -9,7 +9,7 @@
*
* 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
View file @
03ead842
...
...
@@ -9,7 +9,7 @@
*
* 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
View file @
03ead842
...
...
@@ -9,7 +9,7 @@
* Reed Solomon code lifted from reed solomon library written by Phil Karn
* 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
* 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,
return
NULL
;
if
(
prim
<=
0
||
prim
>=
(
1
<<
symsize
))
return
NULL
;
if
(
nroots
<
0
||
nroots
>=
(
1
<<
symsize
)
||
nroots
>
8
)
if
(
nroots
<
0
||
nroots
>=
(
1
<<
symsize
))
return
NULL
;
down
(
&
rslistlock
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment