From: Roland Dreier Date: Thu, 17 Apr 2008 04:01:04 +0000 (-0700) Subject: mlx4_core: Move opening brace of function onto a new line X-Git-Tag: v2.6.26-rc1~1156^2~101 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ca2812111433284024386a8cfd4151651469523e;p=karo-tx-linux.git mlx4_core: Move opening brace of function onto a new line Signed-off-by: Roland Dreier --- diff --git a/drivers/net/mlx4/cmd.c b/drivers/net/mlx4/cmd.c index db49051b97b1..70dff94a8bc6 100644 --- a/drivers/net/mlx4/cmd.c +++ b/drivers/net/mlx4/cmd.c @@ -106,7 +106,8 @@ struct mlx4_cmd_context { u16 token; }; -static int mlx4_status_to_errno(u8 status) { +static int mlx4_status_to_errno(u8 status) +{ static const int trans_table[] = { [CMD_STAT_INTERNAL_ERR] = -EIO, [CMD_STAT_BAD_OP] = -EPERM,