diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-06-22 12:03:43 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-08-07 12:23:14 -0400 |
commit | 511d37af66246c67f65e7896c230bdb81d853b6c (patch) | |
tree | dea427439e9ee504b53d6a05af791d68f2b12bae /drivers/block/xd.c | |
parent | 1676effca4cd2a6b32e6e8e0ecaa91522dfda6fa (diff) |
block/xd.c: fix brace typo
Fix extra brace typo that is causing build errors.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/block/xd.c')
-rw-r--r-- | drivers/block/xd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/xd.c b/drivers/block/xd.c index 4dc298376098..b16a3a926cf2 100644 --- a/drivers/block/xd.c +++ b/drivers/block/xd.c | |||
@@ -322,7 +322,7 @@ static void do_xd_request (struct request_queue * q) | |||
322 | int res = -EIO; | 322 | int res = -EIO; |
323 | int retry; | 323 | int retry; |
324 | 324 | ||
325 | if (req->cmd_type != REQ_TYPE_FS) { | 325 | if (req->cmd_type != REQ_TYPE_FS) |
326 | goto done; | 326 | goto done; |
327 | if (block + count > get_capacity(req->rq_disk)) | 327 | if (block + count > get_capacity(req->rq_disk)) |
328 | goto done; | 328 | goto done; |