]> err.no Git - linux-2.6/blobdiff - drivers/scsi/53c700.h
[PATCH] md: Set/get state of array via sysfs
[linux-2.6] / drivers / scsi / 53c700.h
index d8041952b1b536183a1d5fa02a47487b681410a0..7f22a06fe5ec5cb80dd6dec7157d3d705a2a0e53 100644 (file)
@@ -474,8 +474,7 @@ NCR_700_readl(struct Scsi_Host *host, __u32 reg)
                ioread32(hostdata->base + reg);
 #if 1
        /* sanity check the register */
-       if((reg & 0x3) != 0)
-               BUG();
+       BUG_ON((reg & 0x3) != 0);
 #endif
 
        return value;
@@ -498,8 +497,7 @@ NCR_700_writel(__u32 value, struct Scsi_Host *host, __u32 reg)
 
 #if 1
        /* sanity check the register */
-       if((reg & 0x3) != 0)
-               BUG();
+       BUG_ON((reg & 0x3) != 0);
 #endif
 
        bEBus ? iowrite32be(value, hostdata->base + reg):