Prev: Bug#584846: Detects only 64MB and fails to boot on Intel Green City board if e820 hooked by GRUB2
Next: Dell PowerEdge 4200 scsi, worked in 2.6.18, not in 2.6.26 (LOW PRIORITY help request)
From: Randy Dunlap on 22 Jun 2010 12:10 From: Randy Dunlap <randy.dunlap(a)oracle.com> Fix extra brace typo that is causing build errors. Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com> --- drivers/block/xd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20100622.orig/drivers/block/xd.c +++ linux-next-20100622/drivers/block/xd.c @@ -322,7 +322,7 @@ static void do_xd_request (struct reques int res = -EIO; int retry; - if (req->cmd_type != REQ_TYPE_FS) { + if (req->cmd_type != REQ_TYPE_FS) goto done; if (block + count > get_capacity(req->rq_disk)) goto done; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |