From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751881AbdKYViq (ORCPT ); Sat, 25 Nov 2017 16:38:46 -0500 Received: from smtprelay0003.hostedemail.com ([216.40.44.3]:60589 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751753AbdKYVip (ORCPT ); Sat, 25 Nov 2017 16:38:45 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::,RULES_HIT:41:355:379:541:599:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1540:1593:1594:1711:1730:1747:1777:1792:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3865:3866:3867:3868:3870:3871:3872:3874:4321:4605:5007:7903:10004:10400:10848:11232:11658:11914:12048:12740:12760:12895:13069:13311:13357:13439:14181:14659:14721:21080:21451:21627:30003:30054:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:1,LUA_SUMMARY:none X-HE-Tag: milk55_865d7a4317f56 X-Filterd-Recvd-Size: 1866 Message-ID: <1511645921.2503.18.camel@perches.com> Subject: Re: [PATCH 2/2] staging: sm750b: Fix coding style issues in sm750_accel.c From: Joe Perches To: Jeremy Lacomis , sudipm.mukherjee@gmail.com, teddy.wang@siliconmotion.com, gregkh@linuxfoundation.org Cc: linux-fbdev@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Date: Sat, 25 Nov 2017 13:38:41 -0800 In-Reply-To: <20171125182636.15245-2-j.lacomis@gmail.com> References: <20171125182636.15245-1-j.lacomis@gmail.com> <20171125182636.15245-2-j.lacomis@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.26.1-1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 2017-11-25 at 13:26 -0500, Jeremy Lacomis wrote: > This is a patch to sm750_accel.c that fixes 80-character line length > warnings found by checkpatch.pl. It also fixes some grammatical errors > in comments and moves parameter-specific comments from inline to before > the function. [] > + * Notes on these parameters: > + * sBase: Address of the source offset in the frame buffer > + * sPitch: Pitch value of the source surface in BYTE > + * sx, sy: Starting coordinate of the source surface > + * dBase: Address of the destination offset in the frame buffer > + * dPitch: Pitch value of the destination surface in BYTE > + * Bpp: Color depth of the destination surface > + * dx, dy: Starting coordinate of the destination surface > + * width, height: Dimensions of the rectangle in pixels > + * rop2: ROP value Use kernel-doc format instead. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Sat, 25 Nov 2017 21:38:41 +0000 Subject: Re: [PATCH 2/2] staging: sm750b: Fix coding style issues in sm750_accel.c Message-Id: <1511645921.2503.18.camel@perches.com> List-Id: References: <20171125182636.15245-1-j.lacomis@gmail.com> <20171125182636.15245-2-j.lacomis@gmail.com> In-Reply-To: <20171125182636.15245-2-j.lacomis@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Jeremy Lacomis , sudipm.mukherjee@gmail.com, teddy.wang@siliconmotion.com, gregkh@linuxfoundation.org Cc: linux-fbdev@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org On Sat, 2017-11-25 at 13:26 -0500, Jeremy Lacomis wrote: > This is a patch to sm750_accel.c that fixes 80-character line length > warnings found by checkpatch.pl. It also fixes some grammatical errors > in comments and moves parameter-specific comments from inline to before > the function. [] > + * Notes on these parameters: > + * sBase: Address of the source offset in the frame buffer > + * sPitch: Pitch value of the source surface in BYTE > + * sx, sy: Starting coordinate of the source surface > + * dBase: Address of the destination offset in the frame buffer > + * dPitch: Pitch value of the destination surface in BYTE > + * Bpp: Color depth of the destination surface > + * dx, dy: Starting coordinate of the destination surface > + * width, height: Dimensions of the rectangle in pixels > + * rop2: ROP value Use kernel-doc format instead.