diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-07-21 00:22:42 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-02 21:42:59 +0200 |
commit | febe2ea10e041c014b295a0321f7ec62c05b7e3f (patch) | |
tree | fc628ab949ff4d27d1a149fcab8c22b4f69e1701 | |
parent | V4L/DVB: VIDEO: ivtvfb, remove unneeded NULL test (diff) | |
download | linux-febe2ea10e041c014b295a0321f7ec62c05b7e3f.tar.xz linux-febe2ea10e041c014b295a0321f7ec62c05b7e3f.zip |
V4L/DVB: "dib3000mc: reduce large stack usage" fix
s/ENODEV/ENOMEM, per Andreas.
This fix got lost when someone merged "dib3000mc: reduce large stack
usage". Please don't lose fixes.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/frontends/dib3000mc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/dib3000mc.c b/drivers/media/dvb/frontends/dib3000mc.c index afad252abf41..088e7fadbe3d 100644 --- a/drivers/media/dvb/frontends/dib3000mc.c +++ b/drivers/media/dvb/frontends/dib3000mc.c @@ -822,7 +822,7 @@ int dib3000mc_i2c_enumeration(struct i2c_adapter *i2c, int no_of_demods, u8 defa dmcst = kzalloc(sizeof(struct dib3000mc_state), GFP_KERNEL); if (dmcst == NULL) - return -ENODEV; + return -ENOMEM; dmcst->i2c_adap = i2c; |