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-tuner.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-tuner.c')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-tuner.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-tuner.c b/linux/drivers/media/video/pvrusb2/pvrusb2-tuner.c index e196d92a6..e234cd3c9 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-tuner.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-tuner.c @@ -94,9 +94,8 @@ int pvr2_i2c_tuner_setup(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp) struct pvr2_tuner_handler *ctxt; if (cp->handler) return 0; - ctxt = kmalloc(sizeof(*ctxt),GFP_KERNEL); + ctxt = kzalloc(sizeof(*ctxt),GFP_KERNEL); if (!ctxt) return 0; - memset(ctxt,0,sizeof(*ctxt)); ctxt->i2c_handler.func_data = ctxt; ctxt->i2c_handler.func_table = &tuner_funcs; |