diff options
author | Andreas Schwab <schwab@suse.de> | 2008-07-30 02:59:20 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-30 02:59:20 -0400 |
commit | 38c080ffa9c1b840390832b42ce8621464ab9f97 (patch) | |
tree | 898e9263a2a1820f01a99e004833fabdf6bb91f3 /drivers | |
parent | 4a36702e016947a0ce6c0c024673bb5b16d3f618 (diff) |
niu: Fix error checking in niu_ethflow_to_class.
The callers of niu_ethflow_to_class expect zero as error, but it returns
-1 instead.
Signed-off-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/niu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index 8ee7d7bb951b..e4765b713aba 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
@@ -6417,7 +6417,7 @@ static int niu_ethflow_to_class(int flow_type, u64 *class) | |||
6417 | *class = CLASS_CODE_SCTP_IPV6; | 6417 | *class = CLASS_CODE_SCTP_IPV6; |
6418 | break; | 6418 | break; |
6419 | default: | 6419 | default: |
6420 | return -1; | 6420 | return 0; |
6421 | } | 6421 | } |
6422 | 6422 | ||
6423 | return 1; | 6423 | return 1; |