diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2009-02-23 10:26:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:52 -0400 |
commit | 8420fa7ee22c1d681549ff7ab0466ceda5a911c2 (patch) | |
tree | 62e85db6e66870efa58df24dd69a9c2f8784e5d1 /drivers/media/dvb/frontends/cx24123.c | |
parent | 51ca3bddf34bb6cdbdddd89f59fe3a0131d40eba (diff) |
V4L/DVB (10662): remove redundant memset after kzalloc
Hi there!
While having a look at the allocation of struct dvb_frontend in *_attach
functions, I found some cases calling memset after kzalloc. This is
redundant, and the attached patch removes these calls.
I also changed one case calling kmalloc and memset to kzalloc.
Regards
Matthias
Signed-off-by: Matthias Schwarzott <zzam@gentoo.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/cx24123.c')
-rw-r--r-- | drivers/media/dvb/frontends/cx24123.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/cx24123.c b/drivers/media/dvb/frontends/cx24123.c index 1a8c36f76061..0592f043ea64 100644 --- a/drivers/media/dvb/frontends/cx24123.c +++ b/drivers/media/dvb/frontends/cx24123.c | |||
@@ -1069,13 +1069,13 @@ static struct dvb_frontend_ops cx24123_ops; | |||
1069 | struct dvb_frontend *cx24123_attach(const struct cx24123_config *config, | 1069 | struct dvb_frontend *cx24123_attach(const struct cx24123_config *config, |
1070 | struct i2c_adapter *i2c) | 1070 | struct i2c_adapter *i2c) |
1071 | { | 1071 | { |
1072 | /* allocate memory for the internal state */ | ||
1072 | struct cx24123_state *state = | 1073 | struct cx24123_state *state = |
1073 | kzalloc(sizeof(struct cx24123_state), GFP_KERNEL); | 1074 | kzalloc(sizeof(struct cx24123_state), GFP_KERNEL); |
1074 | 1075 | ||
1075 | dprintk("\n"); | 1076 | dprintk("\n"); |
1076 | /* allocate memory for the internal state */ | ||
1077 | if (state == NULL) { | 1077 | if (state == NULL) { |
1078 | err("Unable to kmalloc\n"); | 1078 | err("Unable to kzalloc\n"); |
1079 | goto error; | 1079 | goto error; |
1080 | } | 1080 | } |
1081 | 1081 | ||