firewire: remove unnecessary alloc/OOM messages

These are redundant to log messages from the mm core.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
Stefan Richter
2013-03-24 17:32:00 +01:00
parent d6c8cefc69
commit cfb0c9d1ff
5 changed files with 12 additions and 30 deletions
+1 -3
View File
@@ -1475,10 +1475,8 @@ static int sbp2_scsi_queuecommand(struct Scsi_Host *shost,
}
orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
if (orb == NULL) {
dev_notice(lu_dev(lu), "failed to alloc ORB\n");
if (orb == NULL)
return SCSI_MLQUEUE_HOST_BUSY;
}
/* Initialize rcode to something not RCODE_COMPLETE. */
orb->base.rcode = -1;