Commit b8797aff authored by Trung Thanh Le's avatar Trung Thanh Le Committed by Greg Kroah-Hartman

staging: android: fix coding style checks in sw_sync.c

replace comparison "obj" to NULL with "!obj"
Signed-off-by: default avatarTrung Thanh Le <trungthanh1608@yahoo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7048c1fc
......@@ -145,7 +145,7 @@ static int sw_sync_open(struct inode *inode, struct file *file)
get_task_comm(task_comm, current);
obj = sw_sync_timeline_create(task_comm);
if (obj == NULL)
if (!obj)
return -ENOMEM;
file->private_data = obj;
......@@ -179,14 +179,14 @@ static long sw_sync_ioctl_create_fence(struct sw_sync_timeline *obj,
}
pt = sw_sync_pt_create(obj, data.value);
if (pt == NULL) {
if (!pt) {
err = -ENOMEM;
goto err;
}
data.name[sizeof(data.name) - 1] = '\0';
fence = sync_fence_create(data.name, pt);
if (fence == NULL) {
if (!fence) {
sync_pt_free(pt);
err = -ENOMEM;
goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment