mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 16:44:20 +00:00
rtl8188eu: Chnage "=NULL" to "= NULL"
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
16d2a24227
commit
51e6fae39e
21 changed files with 88 additions and 88 deletions
|
@ -90,7 +90,7 @@ inline void _rtw_vmfree(u8 *pbuf, u32 sz)
|
|||
u8* _rtw_malloc(u32 sz)
|
||||
{
|
||||
|
||||
u8 *pbuf=NULL;
|
||||
u8 *pbuf= NULL;
|
||||
|
||||
pbuf = kmalloc(sz,in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
|
||||
|
||||
|
@ -893,7 +893,7 @@ static int openFile(struct file **fpp, char *path, int flag, int mode)
|
|||
|
||||
fp=filp_open(path, flag, mode);
|
||||
if (IS_ERR(fp)) {
|
||||
*fpp=NULL;
|
||||
*fpp= NULL;
|
||||
return PTR_ERR(fp);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue