diff options
author | Mike Isely <isely@pobox.com> | 2007-01-19 21:37:11 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2007-01-19 21:37:11 -0600 |
commit | 7994491da22f0e62bd89c2d404d0edae2077bc04 (patch) | |
tree | 933b990b86c0161191801039b8f88af70ebe5a0e /linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c | |
parent | 407531b06687d03d31880527a6383317bc579559 (diff) | |
download | mediapointer-dvb-s2-7994491da22f0e62bd89c2d404d0edae2077bc04.tar.gz mediapointer-dvb-s2-7994491da22f0e62bd89c2d404d0edae2077bc04.tar.bz2 |
pvrusb2: Use kzalloc in place of kmalloc/memset pairs
From: Mike Isely <isely@pobox.com>
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c b/linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c index 733c7d502..db602cc34 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c @@ -231,9 +231,8 @@ int pvr2_i2c_cx2584x_v4l_setup(struct pvr2_hdw *hdw, if (cp->handler) return 0; if (!decoder_detect(cp)) return 0; - ctxt = kmalloc(sizeof(*ctxt),GFP_KERNEL); + ctxt = kzalloc(sizeof(*ctxt),GFP_KERNEL); if (!ctxt) return 0; - memset(ctxt,0,sizeof(*ctxt)); ctxt->handler.func_data = ctxt; ctxt->handler.func_table = &hfuncs; |