Commit 6b2bdc37 authored by David Woodhouse's avatar David Woodhouse

rslib: Spelling fixes.

Some of the fixes from Joe Perches <joe@perches.com> got missed out
of the last update.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent ea27234e
...@@ -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.4 2004/10/05 22:07:53 gleixner Exp $ * $Id: rslib.c,v 1.5 2004/10/22 15:41:47 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
...@@ -22,19 +22,19 @@ ...@@ -22,19 +22,19 @@
* Each user must call init_rs to get a pointer to a rs_control * Each user must call init_rs to get a pointer to a rs_control
* structure for the given rs parameters. This structure is either * structure for the given rs parameters. This structure is either
* generated or a already available matching control structure is used. * generated or a already available matching control structure is used.
* If a structure is generated then the polynominal arrays for * If a structure is generated then the polynomial arrays for
* fast encoding / decoding are built. This can take some time so * fast encoding / decoding are built. This can take some time so
* make sure not to call this function from a timecritical path. * make sure not to call this function from a time critical path.
* Usually a module / driver should initialize the neccecary * Usually a module / driver should initialize the necessary
* rs_control structure on module / driver init and release it * rs_control structure on module / driver init and release it
* on exit. * on exit.
* The encoding puts the calculated syndrome into a given syndrom * The encoding puts the calculated syndrome into a given syndrome
* buffer. * buffer.
* The decoding is a two step process. The first step calculates * The decoding is a two step process. The first step calculates
* the syndrome over the received (data + syndrom) and calls the * the syndrome over the received (data + syndrome) and calls the
* second stage, which does the decoding / error correction itself. * second stage, which does the decoding / error correction itself.
* Many hw encoders provide a syndrom calculation over the received * Many hw encoders provide a syndrome calculation over the received
* data + syndrom and can call the second stage directly. * data + syndrome and can call the second stage directly.
* *
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment