mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 21:51:05 +00:00
ACPI, APEI, EINJ, cleanup 0 vs NULL confusion
This function is returning pointers. Sparse complains here: drivers/acpi/apei/einj.c:262:32: warning: Using plain integer as NULL pointer Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Huang Ying <ying.huang@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
4c40aed869
commit
29924b9f8f
1 changed files with 3 additions and 3 deletions
|
@ -259,15 +259,15 @@ static void *einj_get_parameter_address(void)
|
||||||
|
|
||||||
v4param = ioremap(paddrv4, sizeof(*v4param));
|
v4param = ioremap(paddrv4, sizeof(*v4param));
|
||||||
if (!v4param)
|
if (!v4param)
|
||||||
return 0;
|
return NULL;
|
||||||
if (readq(&v4param->reserved1) || readq(&v4param->reserved2)) {
|
if (readq(&v4param->reserved1) || readq(&v4param->reserved2)) {
|
||||||
iounmap(v4param);
|
iounmap(v4param);
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
return v4param;
|
return v4param;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* do sanity check to trigger table */
|
/* do sanity check to trigger table */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue