Commit 03ead842 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Thomas Gleixner
Browse files

[LIB] reed_solomon: Clean up trailing white spaces

parent 182ec4ee
Loading
Loading
Loading
Loading
+14 −14
Original line number Diff line number Diff line
@@ -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
+18 −18
Original line number Diff line number Diff line
@@ -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 $
 *
 */

+7 −7
Original line number Diff line number Diff line
@@ -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 $
 *
 */

+32 −32
Original line number Diff line number Diff line
@@ -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);
+1 −1

File changed.

Contains only whitespace changes.