mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-09 06:43:06 +00:00
rtl8188eu: Replace degub macro DBG_871X with DBG_88E
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
1e6accffc4
commit
3a3339b715
46 changed files with 1548 additions and 1548 deletions
|
@ -71,7 +71,7 @@ int proc_set_write_reg(struct file *file, const char __user *buffer,
|
|||
|
||||
if (count < 3)
|
||||
{
|
||||
DBG_871X("argument size is less than 3\n");
|
||||
DBG_88E("argument size is less than 3\n");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
|
@ -80,7 +80,7 @@ int proc_set_write_reg(struct file *file, const char __user *buffer,
|
|||
int num = sscanf(tmp, "%x %x %x", &addr, &val, &len);
|
||||
|
||||
if (num != 3) {
|
||||
DBG_871X("invalid write_reg parameter!\n");
|
||||
DBG_88E("invalid write_reg parameter!\n");
|
||||
return count;
|
||||
}
|
||||
|
||||
|
@ -96,7 +96,7 @@ int proc_set_write_reg(struct file *file, const char __user *buffer,
|
|||
rtw_write32(padapter, addr, val);
|
||||
break;
|
||||
default:
|
||||
DBG_871X("error write length =%d", len);
|
||||
DBG_88E("error write length =%d", len);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -153,7 +153,7 @@ int proc_set_read_reg(struct file *file, const char __user *buffer,
|
|||
|
||||
if (count < 2)
|
||||
{
|
||||
DBG_871X("argument size is less than 2\n");
|
||||
DBG_88E("argument size is less than 2\n");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
|
@ -162,7 +162,7 @@ int proc_set_read_reg(struct file *file, const char __user *buffer,
|
|||
int num = sscanf(tmp, "%x %x", &addr, &len);
|
||||
|
||||
if (num != 2) {
|
||||
DBG_871X("invalid read_reg parameter!\n");
|
||||
DBG_88E("invalid read_reg parameter!\n");
|
||||
return count;
|
||||
}
|
||||
|
||||
|
@ -654,9 +654,9 @@ int proc_set_rx_signal(struct file *file, const char __user *buffer,
|
|||
padapter->recvpriv.signal_strength_dbg =signal_strength;
|
||||
|
||||
if (is_signal_dbg)
|
||||
DBG_871X("set %s %u\n", "DBG_SIGNAL_STRENGTH", signal_strength);
|
||||
DBG_88E("set %s %u\n", "DBG_SIGNAL_STRENGTH", signal_strength);
|
||||
else
|
||||
DBG_871X("set %s\n", "HW_SIGNAL_STRENGTH");
|
||||
DBG_88E("set %s\n", "HW_SIGNAL_STRENGTH");
|
||||
|
||||
}
|
||||
|
||||
|
@ -1073,7 +1073,7 @@ int proc_set_best_channel(struct file *file, const char __user *buffer,
|
|||
pmlmeext->channel_set[i].rx_count = 0;
|
||||
}
|
||||
|
||||
DBG_871X("set %s\n", "Clean Best Channel Count");
|
||||
DBG_88E("set %s\n", "Clean Best Channel Count");
|
||||
}
|
||||
|
||||
return count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue