[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140825102142.GA7151@hmsreliant.think-freely.org>
Date: Mon, 25 Aug 2014 06:21:42 -0400
From: Neil Horman <nhorman@...driver.com>
To: Jon Maloy <jon.maloy@...csson.com>
Cc: davem@...emloft.net, netdev@...r.kernel.org,
Paul Gortmaker <paul.gortmaker@...driver.com>,
erik.hugne@...csson.com, ying.xue@...driver.com, maloy@...jonn.com,
tipc-discussion@...ts.sourceforge.net
Subject: Re: [PATCH net-next 02/17] tipc: Fix build.
On Fri, Aug 22, 2014 at 06:09:05PM -0400, Jon Maloy wrote:
> From: "David S. Miller" <davem@...emloft.net>
>
> Missing semicolon in range check fix.
>
> Signed-off-by: David S. Miller <davem@...emloft.net>
> Signed-off-by: Jon Maloy <jon.maloy@...csson.com>
> ---
> net/tipc/port.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/net/tipc/port.h b/net/tipc/port.h
> index a69118f..3087da3 100644
> --- a/net/tipc/port.h
> +++ b/net/tipc/port.h
> @@ -182,8 +182,9 @@ static inline int tipc_port_importance(struct tipc_port *port)
> static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
> {
> if (imp > TIPC_CRITICAL_IMPORTANCE)
> - return -EINVAL
> + return -EINVAL;
> msg_set_importance(&port->phdr, (u32)imp);
> + return 0;
> }
>
Fold this in with the previous patch to avoid a FTBFS during a bisect.
Neil
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists