1
0
Fork 0

staging: keucr: Fix typo in keucr driver

Correct spelling typo in comment and printk.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Masanari Iida 2013-12-12 22:22:59 +09:00 committed by Greg Kroah-Hartman
parent 7387f438e5
commit b163970fa5
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
/***************************************************************************
Define Difinetion
Define Definition
***************************************************************************/
#define SMSUCCESS 0x0000 /* SUCCESS */
#define ERROR 0xFFFF /* ERROR */

View File

@ -45,7 +45,7 @@ Retry Counter Definition
Hardware ECC Definition
***************************************************************************/
#define HW_ECC_SUPPORTED 1 /* Hardware ECC Supported */
/* No difinition for Software ECC */
/* No definition for Software ECC */
/***************************************************************************
SmartMedia Command & Status Definition

View File

@ -139,7 +139,7 @@ BYTE correct_data(BYTE *data, BYTE *eccdata, BYTE ecc1, BYTE ecc2, BYTE ecc3)
BYTE bit; /* Bit address of cor. DATA */
d1 = ecc1^eccdata[1]; d2 = ecc2^eccdata[0]; /* Compare LP's */
d3 = ecc3^eccdata[2]; /* Comapre CP's */
d3 = ecc3^eccdata[2]; /* Compare CP's */
d = ((DWORD)d1<<16) /* Result of comparison */
+((DWORD)d2<<8)
+(DWORD)d3;

View File

@ -432,7 +432,7 @@ static int Copy_D_PhyOneSect(struct us_data *us)
int i;
DWORD err, retry;
/* pr_info("Copy_D_PhyOneSect --- Secotr = %x\n", Media.Sector); */
/* pr_info("Copy_D_PhyOneSect --- Sector = %x\n", Media.Sector); */
if (ReadBlock != NO_ASSIGN) {
Media.PhyBlock = ReadBlock;
for (retry = 0; retry < 2; retry++) {