From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 70DBDC6FD1C for ; Thu, 23 Mar 2023 15:06:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231704AbjCWPGN (ORCPT ); Thu, 23 Mar 2023 11:06:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46490 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229997AbjCWPGL (ORCPT ); Thu, 23 Mar 2023 11:06:11 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 825B02BF28 for ; Thu, 23 Mar 2023 08:04:55 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id EECF36278C for ; Thu, 23 Mar 2023 15:04:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F454C4339E; Thu, 23 Mar 2023 15:04:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1679583853; bh=dLFf4T6HvZ08GrQjZsEXffYgZBZrQ3VXEINg99DXYIc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PS+eRgyatl5AIbGikoplQ7sIVJyxupc3wThHNhcACIqu0s/x6u8P0vOnZxX1Z6WGQ Mku8F8RpfXLc4iwOHreWxZBJMpBRG0CW3T3d3QHl4afbj0xJ3kJ03RS+g78ZPJezdY 3KV5fi6IuhPELsMBAO9dSdo9g+x2ZNMg1TX5oK3A= Date: Thu, 23 Mar 2023 16:04:10 +0100 From: Greg Kroah-Hartman To: Khadija Kamran Cc: outreachy@lists.linux.dev, Parthiban Veerasooran , Christian Gromm , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [RESEND PATCH] staging: most: fix line ending with '(' in dim2 Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 23, 2023 at 05:51:27PM +0500, Khadija Kamran wrote: > Splitting function header to multiple lines because of 80 characters per > line limit, results in ending the function call line with '('. > This leads to CHECK reported by checkpatch.pl > > Move the function parameters right after the '(' in the function call > line. Align the rest of the parameters to the opening parenthesis. > > Signed-off-by: Khadija Kamran > --- > drivers/staging/most/dim2/hal.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) Why is this a RESEND?