diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-02-14 03:33:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:54 -0500 |
commit | 3159f06dc2303630c02d1ad2eeaeaf341414c9df (patch) | |
tree | 678779f605dac635df3932381933b3950a0052ba /sound/oss/dmasound/dac3550a.c | |
parent | cd354f1ae75e6466a7e31b727faede57a1f89ca5 (diff) |
[PATCH] OSS: replace kmalloc()+memset() combos with kzalloc()
Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/oss/dmasound/dac3550a.c')
-rw-r--r-- | sound/oss/dmasound/dac3550a.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/oss/dmasound/dac3550a.c b/sound/oss/dmasound/dac3550a.c index 7360d8954d60..0f0d03a55dab 100644 --- a/sound/oss/dmasound/dac3550a.c +++ b/sound/oss/dmasound/dac3550a.c | |||
@@ -163,10 +163,9 @@ static int daca_detect_client(struct i2c_adapter *adapter, int address) | |||
163 | struct i2c_client *new_client; | 163 | struct i2c_client *new_client; |
164 | int rc = -ENODEV; | 164 | int rc = -ENODEV; |
165 | 165 | ||
166 | new_client = kmalloc(sizeof(*new_client), GFP_KERNEL); | 166 | new_client = kzalloc(sizeof(*new_client), GFP_KERNEL); |
167 | if (!new_client) | 167 | if (!new_client) |
168 | return -ENOMEM; | 168 | return -ENOMEM; |
169 | memset(new_client, 0, sizeof(*new_client)); | ||
170 | 169 | ||
171 | new_client->addr = address; | 170 | new_client->addr = address; |
172 | new_client->adapter = adapter; | 171 | new_client->adapter = adapter; |