diff options
author | aybuke ozdemir <aybuke.147@gmail.com> | 2015-02-26 00:10:20 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-02-26 12:23:58 -0800 |
commit | 924954f12448249756ccbc45ba1e5e53bf9cfaee (patch) | |
tree | bf02dee541194b30678fa778b65b29733967def9 /drivers/staging/i2o | |
parent | 30463dcfa2c19d72b6ebdd4073abbe65531656a2 (diff) | |
download | talos-op-linux-924954f12448249756ccbc45ba1e5e53bf9cfaee.tar.gz talos-op-linux-924954f12448249756ccbc45ba1e5e53bf9cfaee.zip |
Staging: i2o: Remove unnecessary 'out of memory' message
This patch removes unnecessay out of memory message fixing the following
checkpach.pl warning in device.c
Signed-off-by: aybuke ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/i2o')
-rw-r--r-- | drivers/staging/i2o/device.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/i2o/device.c b/drivers/staging/i2o/device.c index 2af22553dd4e..162a88762ff1 100644 --- a/drivers/staging/i2o/device.c +++ b/drivers/staging/i2o/device.c @@ -566,7 +566,6 @@ int i2o_parm_table_get(struct i2o_device *dev, int oper, int group, opblk = kmalloc(size, GFP_KERNEL); if (opblk == NULL) { - printk(KERN_ERR "i2o: no memory for query buffer.\n"); return -ENOMEM; } |