summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2006-10-08 15:55:55 +0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-10-25 15:12:29 -0700
commit46c43db1eabcdc46ad9a3d711edff1d698ecd21f (patch)
treea2bdd91e253512ab7467f28e37d09d907c263192 /drivers
parent8e394aec14f24e3b41a315a2dc53537024190c8a (diff)
downloadlinux-46c43db1eabcdc46ad9a3d711edff1d698ecd21f.tar.gz
linux-46c43db1eabcdc46ad9a3d711edff1d698ecd21f.tar.xz
[SCSI] scsi_lib.c: use BUILD_BUG_ON
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/scsi_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index 743f67ed7640..d2c02df12fdc 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -1084,7 +1084,7 @@ static void scsi_setup_blk_pc_cmnd(struct scsi_cmnd *cmd)
{
struct request *req = cmd->request;
- BUG_ON(sizeof(req->cmd) > sizeof(cmd->cmnd));
+ BUILD_BUG_ON(sizeof(req->cmd) > sizeof(cmd->cmnd));
memcpy(cmd->cmnd, req->cmd, sizeof(cmd->cmnd));
cmd->cmd_len = req->cmd_len;
if (!req->data_len)