From: Jie Liu <jeff....@oracle.com>

Get rid of the needless __GFP_ZERO flag for kzalloc() at oz_elt_stream_create().

Signed-off-by: Jie Liu <jeff....@oracle.com>
---
 drivers/staging/ozwpan/ozeltbuf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ozwpan/ozeltbuf.c 
b/drivers/staging/ozwpan/ozeltbuf.c
index 9b86486..02d5412 100644
--- a/drivers/staging/ozwpan/ozeltbuf.c
+++ b/drivers/staging/ozwpan/ozeltbuf.c
@@ -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);
-- 
1.7.9.5
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to