Loading include/linux/rslib.h +14 −14 Original line number Diff line number Diff line Loading @@ -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:22 gleixner Exp $ * $Id: rslib.h,v 1.4 2005/11/07 11:14:52 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 Loading lib/reed_solomon/decode_rs.c +18 −18 Original line number Diff line number Diff line Loading @@ -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 $ * */ Loading lib/reed_solomon/encode_rs.c +7 −7 Original line number Diff line number Diff line Loading @@ -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 $ * */ Loading lib/reed_solomon/reed_solomon.c +32 −32 Original line number Diff line number Diff line Loading @@ -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 Loading Loading @@ -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); Loading lib/reed_solomon/Makefile +1 −1 File changed.Contains only whitespace changes. Show changes Loading
include/linux/rslib.h +14 −14 Original line number Diff line number Diff line Loading @@ -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:22 gleixner Exp $ * $Id: rslib.h,v 1.4 2005/11/07 11:14:52 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 Loading
lib/reed_solomon/decode_rs.c +18 −18 Original line number Diff line number Diff line Loading @@ -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 $ * */ Loading
lib/reed_solomon/encode_rs.c +7 −7 Original line number Diff line number Diff line Loading @@ -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 $ * */ Loading
lib/reed_solomon/reed_solomon.c +32 −32 Original line number Diff line number Diff line Loading @@ -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 Loading Loading @@ -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); Loading