mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-09 06:43:06 +00:00
rtl8188eu: Change "switch(" to "switch ("
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
8e22f0d2e8
commit
c818db1282
35 changed files with 170 additions and 170 deletions
|
@ -85,7 +85,7 @@ int proc_set_write_reg(struct file *file, const char __user *buffer,
|
|||
return count;
|
||||
}
|
||||
|
||||
switch(len)
|
||||
switch (len)
|
||||
{
|
||||
case 1:
|
||||
rtw_write8(padapter, addr, (u8)val);
|
||||
|
@ -125,7 +125,7 @@ int proc_get_read_reg(char *page, char **start,
|
|||
return len;
|
||||
}
|
||||
|
||||
switch(proc_get_read_len)
|
||||
switch (proc_get_read_len)
|
||||
{
|
||||
case 1:
|
||||
len += snprintf(page + len, count - len, "rtw_read8(0x%x)=0x%x\n", proc_get_read_addr, rtw_read8(padapter, proc_get_read_addr));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue