aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2013-03-24 12:31:09 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2013-04-28 17:36:43 -0400
commitbdabfa54635e5d95a5aa2087794f203cc1915f7a (patch)
treefc5e739c323cdd9fcf47c9b9be1247b7ef5380f9
parentdf7ce66363bf66b2e8ef6245f5f42c2f6fb0db52 (diff)
firewire: core: remove an always false test
struct fw_cdev_allocate_iso_resource.bandwidth is unsigned. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r--drivers/firewire/core-cdev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/firewire/core-cdev.c b/drivers/firewire/core-cdev.c
index 27ac423ab25e..13573e8f518f 100644
--- a/drivers/firewire/core-cdev.c
+++ b/drivers/firewire/core-cdev.c
@@ -1366,8 +1366,7 @@ static int init_iso_resource(struct client *client,
1366 int ret; 1366 int ret;
1367 1367
1368 if ((request->channels == 0 && request->bandwidth == 0) || 1368 if ((request->channels == 0 && request->bandwidth == 0) ||
1369 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL || 1369 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL)
1370 request->bandwidth < 0)
1371 return -EINVAL; 1370 return -EINVAL;
1372 1371
1373 r = kmalloc(sizeof(*r), GFP_KERNEL); 1372 r = kmalloc(sizeof(*r), GFP_KERNEL);