Commit 026a8210 authored by Luca Ellero's avatar Luca Ellero Committed by Greg Kroah-Hartman

staging: ced1401: rename ReadWord()

rename camel case function ReadWord() to ced_read_word()
Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fcc2171f
...@@ -870,12 +870,12 @@ static bool ced_read_char(unsigned char *pChar, char *pBuf, unsigned int *pdDone ...@@ -870,12 +870,12 @@ static bool ced_read_char(unsigned char *pChar, char *pBuf, unsigned int *pdDone
#ifdef NOTUSED #ifdef NOTUSED
/**************************************************************************** /****************************************************************************
** **
** ReadWord ** ced_read_word
** **
** Reads a word from the 1401, just uses ced_read_char twice; passes on any error ** Reads a word from the 1401, just uses ced_read_char twice; passes on any error
** **
*****************************************************************************/ *****************************************************************************/
static bool ReadWord(unsigned short *pWord, char *pBuf, unsigned int *pdDone, static bool ced_read_word(unsigned short *pWord, char *pBuf, unsigned int *pdDone,
unsigned int dGot) unsigned int dGot)
{ {
if (ced_read_char((unsigned char *)pWord, pBuf, pdDone, dGot)) if (ced_read_char((unsigned char *)pWord, pBuf, pdDone, dGot))
......
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