Skip to content

Commit

Permalink
V4L/DVB: dib7000p: reduce large stack usage fix
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Andrew Morton authored and Mauro Carvalho Chehab committed May 19, 2010
1 parent 30d81bb commit 0b42760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/dib7000p.c
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,7 @@ int dib7000p_i2c_enumeration(struct i2c_adapter *i2c, int no_of_demods, u8 defau

dpst = kzalloc(sizeof(struct dib7000p_state), GFP_KERNEL);
if (!dpst)
return -ENODEV;
return -ENOMEM;

dpst->i2c_adap = i2c;

Expand Down

0 comments on commit 0b42760

Please sign in to comment.