mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 07:31:41 +00:00
PM / QoS: Use NULL pointer instead of plain integer in pm_qos.h
Fix the following sparse warning: include/linux/pm_qos.h:69:28: warning: Using plain integer as NULL pointer Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
84a1caf145
commit
8361809264
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ enum pm_qos_req_action {
|
||||||
|
|
||||||
static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
|
static inline int dev_pm_qos_request_active(struct dev_pm_qos_request *req)
|
||||||
{
|
{
|
||||||
return req->dev != 0;
|
return req->dev != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
|
int pm_qos_update_target(struct pm_qos_constraints *c, struct plist_node *node,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue