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 CCC86C6FD18 for ; Wed, 29 Mar 2023 11:43:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229909AbjC2LnB (ORCPT ); Wed, 29 Mar 2023 07:43:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44388 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229458AbjC2LnA (ORCPT ); Wed, 29 Mar 2023 07:43:00 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 95A7E1FD8; Wed, 29 Mar 2023 04:42:59 -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 ams.source.kernel.org (Postfix) with ESMTPS id 50957B822E4; Wed, 29 Mar 2023 11:42:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B2946C433EF; Wed, 29 Mar 2023 11:42:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1680090177; bh=AYjLBzvCIli3/g87osWOfF8BceYv0fMCoWlwocskBR0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jy0p380j07xybOmELNTLvm2yJ7BUqFgyY3H82JSuXNR0dP5GF/dXeC90AXR3SLIxt tVUe48iTddMowdhAMq4mh4E1QWLJ9ltSxJDNb82Jsrjf6vL2rDWthTu+nqgtyGu0Es FhD9OZJZ0gJVrJTLpQkM5ExYtN/q4lxdb1tZz/T4= Date: Wed, 29 Mar 2023 13:42:54 +0200 From: Greg Kroah-Hartman To: Kloudifold Cc: Sudip Mukherjee , Teddy Wang , linux-fbdev@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, outreachy@lists.linux.dev, linux-staging@lists.linux.dev, alison.schofield@intel.com Subject: Re: [PATCH v6] staging: sm750: Rename sm750_hw_cursor_* functions to snake_case 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 Wed, Mar 29, 2023 at 07:27:04PM +0800, Kloudifold wrote: > sm750 driver has sm750_hw_cursor_* functions, which are named in > camelcase. Rename them to snake case to follow the function naming > convention. > > - sm750_hw_cursor_setSize => sm750_hw_cursor_set_size > - sm750_hw_cursor_setPos => sm750_hw_cursor_set_pos > - sm750_hw_cursor_setColor => sm750_hw_cursor_set_color > - sm750_hw_cursor_setData => sm750_hw_cursor_set_data > - sm750_hw_cursor_setData2 => sm750_hw_cursor_set_data2 > > Reported-by: kernel test robot The test robot did not report that the names were incorrect :( > Link: https://lore.kernel.org/oe-kbuild-all/202303110849.X24WnHnM-lkp@intel.com/ > Signed-off-by: Kloudifold Is that the name you use to sign documents? thanks, greg k-h