aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-10-27 19:46:58 +0100
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-27 22:18:12 -0700
commit36ea96a485ce09a88819896e48468d6469c292ab (patch)
tree5b7eb690772dfc2a2f1815aecefd6df63fbdd93c
parentscatterlist fallout: mmc (diff)
downloadlinux-dev-36ea96a485ce09a88819896e48468d6469c292ab.tar.xz
linux-dev-36ea96a485ce09a88819896e48468d6469c292ab.zip
cirrusfb nonsense
(pointer > 0) is deeply weird; (pointer >= 0) is even dumber... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/video/cirrusfb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/cirrusfb.c b/drivers/video/cirrusfb.c
index f99cb77e7b42..f7e2d5add831 100644
--- a/drivers/video/cirrusfb.c
+++ b/drivers/video/cirrusfb.c
@@ -2509,8 +2509,7 @@ static int cirrusfb_zorro_register(struct zorro_dev *z,
cinfo = info->par;
cinfo->btype = btype;
- assert(z > 0);
- assert(z2 >= 0);
+ assert(z);
assert(btype != BT_NONE);
cinfo->zdev = z;