staging: ozwpan: remove unneeded __GFP_ZERO to kzalloc() at oz_elt_stream_create()
authorJie Liu <jeff.liu@oracle.com>
Fri, 1 Nov 2013 14:22:08 +0000 (22:22 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Nov 2013 00:29:43 +0000 (16:29 -0800)
Get rid of the needless __GFP_ZERO flag for kzalloc() at oz_elt_stream_create().

Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ozwpan/ozeltbuf.c

index 9b86486c6b114b57fbd3792800b473fb47f445b8..02d5412478191f7e2fd552841a7a8ad0987f7fb2 100644 (file)
@@ -138,7 +138,7 @@ int oz_elt_stream_create(struct oz_elt_buf *buf, u8 id, int max_buf_count)
 
        oz_dbg(ON, "%s: (0x%x)\n", __func__, id);
 
-       st = kzalloc(sizeof(struct oz_elt_stream), GFP_ATOMIC | __GFP_ZERO);
+       st = kzalloc(sizeof(struct oz_elt_stream), GFP_ATOMIC);
        if (st == NULL)
                return -ENOMEM;
        atomic_set(&st->ref_count, 1);
This page took 0.025705 seconds and 5 git commands to generate.