diff options
Diffstat (limited to 'drivers/block/sunvdc.c')
-rw-r--r-- | drivers/block/sunvdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/sunvdc.c b/drivers/block/sunvdc.c index 564156a8e572..5814deb6963d 100644 --- a/drivers/block/sunvdc.c +++ b/drivers/block/sunvdc.c | |||
@@ -461,7 +461,7 @@ static int generic_request(struct vdc_port *port, u8 op, void *buf, int len) | |||
461 | int op_len, err; | 461 | int op_len, err; |
462 | void *req_buf; | 462 | void *req_buf; |
463 | 463 | ||
464 | if (!(((u64)1 << ((u64)op - 1)) & port->operations)) | 464 | if (!(((u64)1 << (u64)op) & port->operations)) |
465 | return -EOPNOTSUPP; | 465 | return -EOPNOTSUPP; |
466 | 466 | ||
467 | switch (op) { | 467 | switch (op) { |