summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2014-09-06 11:11:58 -0400
committerIlia Mirkin <[email protected]>2014-09-08 20:06:11 -0400
commit9ced42b1aaee04734e7ff298a71f3203cc4a1d50 (patch)
tree330059c6652e2181ee7a098b847168c99a34f476 /src
parent564e3050941dbf6acdb49f974dd114e2b6a21347 (diff)
nvc0: size is a uint16_t, remove unnecessary assertion
Reported by Coverity. Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/nouveau/nvc0/nve4_compute.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nve4_compute.h b/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
index 79862b7dcd8..4d7af54d860 100644
--- a/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
+++ b/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
@@ -88,7 +88,6 @@ nve4_cp_launch_desc_set_cb(struct nve4_cp_launch_desc *desc,
assert(index < 8);
assert(!(base & 0xff));
- assert(size <= 65536);
desc->cb[index].address_l = address;
desc->cb[index].address_h = address >> 32;