diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:36:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:36:32 -0500 |
commit | 593195f9b2309693f27b402f34573f7920b82c3e (patch) | |
tree | 54d55557665e72e90ef35a1e0f008d381c17ed98 /drivers/media/video/tea6420.c | |
parent | 983d5dbdb2b38d024935f560a91cddcf704875f3 (diff) | |
parent | f9cfc08d640e1586e76eee63cc2b0a9360bc7c7e (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb
Diffstat (limited to 'drivers/media/video/tea6420.c')
-rw-r--r-- | drivers/media/video/tea6420.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/tea6420.c b/drivers/media/video/tea6420.c index c4ba3742f5c7..4dcba5a4fff0 100644 --- a/drivers/media/video/tea6420.c +++ b/drivers/media/video/tea6420.c | |||
@@ -99,11 +99,10 @@ static int tea6420_detect(struct i2c_adapter *adapter, int address, int kind) | |||
99 | } | 99 | } |
100 | 100 | ||
101 | /* allocate memory for client structure */ | 101 | /* allocate memory for client structure */ |
102 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | 102 | client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL); |
103 | if (0 == client) { | 103 | if (0 == client) { |
104 | return -ENOMEM; | 104 | return -ENOMEM; |
105 | } | 105 | } |
106 | memset(client, 0x0, sizeof(struct i2c_client)); | ||
107 | 106 | ||
108 | /* fill client structure */ | 107 | /* fill client structure */ |
109 | memcpy(client, &client_template, sizeof(struct i2c_client)); | 108 | memcpy(client, &client_template, sizeof(struct i2c_client)); |