Commit 915c335e authored by Andrey Panin's avatar Andrey Panin Committed by Linus Torvalds

[PATCH] CRC16 renaming in ISDN drivers

Signed-off-by: default avatarAndrey Panin <pazke@donpac.ru>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 02a66006
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/crc16.h> #include <linux/crc-ccitt.h>
#include "isdnhdlc.h" #include "isdnhdlc.h"
/*-------------------------------------------------------------------*/ /*-------------------------------------------------------------------*/
...@@ -305,7 +305,7 @@ int isdnhdlc_decode (struct isdnhdlc_vars *hdlc, const unsigned char *src, ...@@ -305,7 +305,7 @@ int isdnhdlc_decode (struct isdnhdlc_vars *hdlc, const unsigned char *src,
if(hdlc->data_bits==8){ if(hdlc->data_bits==8){
hdlc->data_bits = 0; hdlc->data_bits = 0;
hdlc->data_received = 1; hdlc->data_received = 1;
hdlc->crc = crc16_byte(hdlc->crc, hdlc->shift_reg); hdlc->crc = crc_ccitt_byte(hdlc->crc, hdlc->shift_reg);
// good byte received // good byte received
if (dsize--) { if (dsize--) {
...@@ -482,7 +482,7 @@ int isdnhdlc_encode(struct isdnhdlc_vars *hdlc, const unsigned char *src, ...@@ -482,7 +482,7 @@ int isdnhdlc_encode(struct isdnhdlc_vars *hdlc, const unsigned char *src,
break; break;
} }
if(hdlc->bit_shift==8){ if(hdlc->bit_shift==8){
hdlc->crc = crc16_byte(hdlc->crc, hdlc->shift_reg); hdlc->crc = crc_ccitt_byte(hdlc->crc, hdlc->shift_reg);
} }
if(hdlc->shift_reg & 0x01){ if(hdlc->shift_reg & 0x01){
hdlc->hdlc_bits1++; hdlc->hdlc_bits1++;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
*/ */
#include <linux/crc16.h> #include <linux/crc-ccitt.h>
#include "st5481_hdlc.h" #include "st5481_hdlc.h"
...@@ -262,7 +262,7 @@ int hdlc_decode(struct hdlc_vars *hdlc, const unsigned char *src, ...@@ -262,7 +262,7 @@ int hdlc_decode(struct hdlc_vars *hdlc, const unsigned char *src,
if(hdlc->data_bits==8){ if(hdlc->data_bits==8){
hdlc->data_bits = 0; hdlc->data_bits = 0;
hdlc->data_received = 1; hdlc->data_received = 1;
hdlc->crc = crc16_byte(hdlc->crc, hdlc->shift_reg); hdlc->crc = crc_ccitt_byte(hdlc->crc, hdlc->shift_reg);
// good byte received // good byte received
if (dsize--) { if (dsize--) {
...@@ -439,7 +439,7 @@ int hdlc_encode(struct hdlc_vars *hdlc, const unsigned char *src, ...@@ -439,7 +439,7 @@ int hdlc_encode(struct hdlc_vars *hdlc, const unsigned char *src,
break; break;
} }
if(hdlc->bit_shift==8){ if(hdlc->bit_shift==8){
hdlc->crc = crc16_byte(hdlc->crc, hdlc->shift_reg); hdlc->crc = crc_ccitt_byte(hdlc->crc, hdlc->shift_reg);
} }
if(hdlc->shift_reg & 0x01){ if(hdlc->shift_reg & 0x01){
hdlc->hdlc_bits1++; hdlc->hdlc_bits1++;
......
...@@ -27,7 +27,7 @@ Revision History: ...@@ -27,7 +27,7 @@ Revision History:
---------------------------------------------------------------------------*/ ---------------------------------------------------------------------------*/
#include <linux/crc16.h> #include <linux/crc-ccitt.h>
#include "tpam.h" #include "tpam.h"
#define HDLC_CTRL_CHAR_CMPL_MASK 0x20 /* HDLC control character complement mask */ #define HDLC_CTRL_CHAR_CMPL_MASK 0x20 /* HDLC control character complement mask */
...@@ -85,7 +85,7 @@ void hdlc_encode_modem(u8 *buffer_in, u32 lng_in, ...@@ -85,7 +85,7 @@ void hdlc_encode_modem(u8 *buffer_in, u32 lng_in,
/* /*
* FCS calculation * FCS calculation
*/ */
fcs = crc16_byte(fcs, data); fcs = crc_ccitt_byte(fcs, data);
ESCAPE_CHAR(p_data_out, data); ESCAPE_CHAR(p_data_out, data);
} }
...@@ -121,7 +121,7 @@ void hdlc_no_accm_encode(u8 *buffer_in, u32 lng_in, ...@@ -121,7 +121,7 @@ void hdlc_no_accm_encode(u8 *buffer_in, u32 lng_in,
while (lng_in--) { while (lng_in--) {
data = *buffer_in++; data = *buffer_in++;
/* calculate FCS */ /* calculate FCS */
fcs = crc16_byte(fcs, data); fcs = crc_ccitt_byte(fcs, data);
*p_data_out++ = data; *p_data_out++ = data;
} }
...@@ -151,7 +151,7 @@ u32 hdlc_no_accm_decode(u8 *buffer_in, u32 lng_in) { ...@@ -151,7 +151,7 @@ u32 hdlc_no_accm_decode(u8 *buffer_in, u32 lng_in) {
while (lng_in--) { while (lng_in--) {
data = *buffer_in++; data = *buffer_in++;
/* calculate FCS */ /* calculate FCS */
fcs = crc16_byte(fcs, data); fcs = crc_ccitt_byte(fcs, data);
} }
if (fcs == HDLC_FCS_OK) if (fcs == HDLC_FCS_OK)
......
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