Skip to content

Commit

Permalink
rslib: Cleanup top level comments
Browse files Browse the repository at this point in the history
File references and stale CVS ids are really not useful.

Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Boris Brezillon <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Segher Boessenkool <[email protected]>
Cc: Kernel Hardening <[email protected]>
Cc: Richard Weinberger <[email protected]>
Cc: Mike Snitzer <[email protected]>
Cc: Anton Vorontsov <[email protected]>
Cc: Colin Cross <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: David Woodhouse <[email protected]>
Cc: Alasdair Kergon <[email protected]>
Signed-off-by: Kees Cook <[email protected]>
  • Loading branch information
KAGA-KOKO authored and kees committed Apr 25, 2018
1 parent cc4b86e commit 3413e18
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 35 deletions.
7 changes: 1 addition & 6 deletions include/linux/rslib.h
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
/*
* include/linux/rslib.h
*
* Overview:
* Generic Reed Solomon encoder / decoder library
* Generic Reed Solomon encoder / decoder library
*
* Copyright (C) 2004 Thomas Gleixner ([email protected])
*
* RS code lifted from reed solomon library written by Phil Karn
* Copyright 2002 Phil Karn, KA9Q
*
* $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
* published by the Free Software Foundation.
Expand Down
12 changes: 2 additions & 10 deletions lib/reed_solomon/decode_rs.c
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
/*
* lib/reed_solomon/decode_rs.c
*
* Overview:
* Generic Reed Solomon encoder / decoder library
* Generic Reed Solomon encoder / decoder library
*
* Copyright 2002, Phil Karn, KA9Q
* May be used under the terms of the GNU General Public License (GPL)
*
* Adaption to the kernel by Thomas Gleixner ([email protected])
*
* $Id: decode_rs.c,v 1.7 2005/11/07 11:14:59 gleixner Exp $
*
*/

/* Generic data width independent code which is included by the
* wrappers.
* Generic data width independent code which is included by the wrappers.
*/
{
int deg_lambda, el, deg_omega;
Expand Down
13 changes: 2 additions & 11 deletions lib/reed_solomon/encode_rs.c
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
/*
* lib/reed_solomon/encode_rs.c
*
* Overview:
* Generic Reed Solomon encoder / decoder library
* Generic Reed Solomon encoder / decoder library
*
* Copyright 2002, Phil Karn, KA9Q
* May be used under the terms of the GNU General Public License (GPL)
*
* Adaption to the kernel by Thomas Gleixner ([email protected])
*
* $Id: encode_rs.c,v 1.5 2005/11/07 11:14:59 gleixner Exp $
*
*/

/* Generic data width independent code which is included by the
* wrappers.
* int encode_rsX (struct rs_control *rs, uintX_t *data, int len, uintY_t *par)
* Generic data width independent code which is included by the wrappers.
*/
{
int i, j, pad;
Expand Down
9 changes: 1 addition & 8 deletions lib/reed_solomon/reed_solomon.c
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
/*
* lib/reed_solomon/reed_solomon.c
*
* Overview:
* Generic Reed Solomon encoder / decoder library
* Generic Reed Solomon encoder / decoder library
*
* Copyright (C) 2004 Thomas Gleixner ([email protected])
*
* Reed Solomon code lifted from reed solomon library written by Phil Karn
* Copyright 2002 Phil Karn, KA9Q
*
* $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
* published by the Free Software Foundation.
Expand All @@ -35,9 +30,7 @@
* second stage, which does the decoding / error correction itself.
* Many hw encoders provide a syndrome calculation over the received
* data + syndrome and can call the second stage directly.
*
*/

#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
Expand Down

0 comments on commit 3413e18

Please sign in to comment.