提交 8db353bd 编写于 作者: S Sachin Kamat 提交者: Greg Kroah-Hartman

thunderbolt: Use NULL instead of 0 in ctl.c

The function returns a pointer. Hence return NULL instead of 0.
Signed-off-by: NSachin Kamat <sachin.kamat@samsung.com>
Acked-by: NAndreas Noever <andreas.noever@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 c9c2deef
...@@ -305,13 +305,13 @@ static struct ctl_pkg *tb_ctl_pkg_alloc(struct tb_ctl *ctl) ...@@ -305,13 +305,13 @@ static struct ctl_pkg *tb_ctl_pkg_alloc(struct tb_ctl *ctl)
{ {
struct ctl_pkg *pkg = kzalloc(sizeof(*pkg), GFP_KERNEL); struct ctl_pkg *pkg = kzalloc(sizeof(*pkg), GFP_KERNEL);
if (!pkg) if (!pkg)
return 0; return NULL;
pkg->ctl = ctl; pkg->ctl = ctl;
pkg->buffer = dma_pool_alloc(ctl->frame_pool, GFP_KERNEL, pkg->buffer = dma_pool_alloc(ctl->frame_pool, GFP_KERNEL,
&pkg->frame.buffer_phy); &pkg->frame.buffer_phy);
if (!pkg->buffer) { if (!pkg->buffer) {
kfree(pkg); kfree(pkg);
return 0; return NULL;
} }
return pkg; return pkg;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册