From patchwork Tue Apr 13 19:30:05 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Saeed Mahameed X-Patchwork-Id: 420661 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D595FC43460 for ; Tue, 13 Apr 2021 19:31:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B4A54613C7 for ; Tue, 13 Apr 2021 19:31:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346069AbhDMTb1 (ORCPT ); Tue, 13 Apr 2021 15:31:27 -0400 Received: from mail.kernel.org ([198.145.29.99]:36102 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346495AbhDMTa6 (ORCPT ); Tue, 13 Apr 2021 15:30:58 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 6FAD8613CE; Tue, 13 Apr 2021 19:30:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1618342237; bh=p3uO0guYgeQkCCSe2nsrxiDdg7AFwZrwRF0wYByzg3g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=u+P5KjPwdCAMfv0+2ZM9Kh05QUpGndhOFuQleXbsruT34jriI3a0z6LUXzpCGHIBP DvHa008Q/7jW12Vxs6iuG5thppj0BwHqS+S5sG/epnq3KgARXl8nXerWUYUL/Yu9Gi tqwaskttQz9bMYVjRHwrhQ9MrM1Rqaj3so32s459iN5bL/3ElltqqinY3ZLpia0OW2 LbTF0IrVDY6iamFk1t5q8KKDCyj/+WHYOztmqCHcs3+6hha+cf5S/fjciJaZ//aJzH EoMOVf36GkjM6aM8tR6Andy09t3VA5WXyku2eA4GvvBb9g7bQ7cpNZE5QMNop29TD/ 1ePRckg/SugtA== From: Saeed Mahameed To: "David S. Miller" , Jakub Kicinski Cc: netdev@vger.kernel.org, Tariq Toukan , Wenpeng Liang , Weihang Li , Saeed Mahameed Subject: [net-next 15/16] net/mlx5: Replace spaces with tab at the start of a line Date: Tue, 13 Apr 2021 12:30:05 -0700 Message-Id: <20210413193006.21650-16-saeed@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210413193006.21650-1-saeed@kernel.org> References: <20210413193006.21650-1-saeed@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Wenpeng Liang There should be no spaces at the start of the line. Signed-off-by: Wenpeng Liang Signed-off-by: Weihang Li Signed-off-by: Saeed Mahameed --- drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c index e58ef8c713e4..34eb1118670f 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c @@ -52,7 +52,7 @@ #include "diag/en_rep_tracepoint.h" #define MLX5E_REP_PARAMS_DEF_LOG_SQ_SIZE \ - max(0x7, MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE) + max(0x7, MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE) #define MLX5E_REP_PARAMS_DEF_NUM_CHANNELS 1 static const char mlx5e_rep_driver_name[] = "mlx5e_rep";