From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753616AbcHUVPt (ORCPT ); Sun, 21 Aug 2016 17:15:49 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34035 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753371AbcHUVPr (ORCPT ); Sun, 21 Aug 2016 17:15:47 -0400 Date: Sun, 21 Aug 2016 16:57:07 +0200 From: Greg KH To: Nadim almas Cc: abbotti@mev.co.uk, linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org Subject: Re: [PATCH 34/34] Staging: comedi: drivers: cd_pcidas: Compression of Message-ID: <20160821145707.GA24541@kroah.com> References: <1469909095-15991-1-git-send-email-nadim.902@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1469909095-15991-1-git-send-email-nadim.902@gmail.com> User-Agent: Mutt/1.7.0 (2016-08-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Jul 30, 2016 at 01:04:55PM -0700, Nadim almas wrote: > This patch compresses two lines in to a single line in file > cb_pcidas.c > if immediate return statement is found. It also removes variable > bytes_written as it is no longer needed. > > It is done using script Coccinelle. And coccinelle uses following > semantic patch for this compression function: > > @@ > expression e, ret; > @@ > > -ret = > +return > e; > -return ret > > Signed-off-by: Nadim Almas Your Subject: seems very odd, can you please fix it up? And where are the other 33 patches in this series? thanks, greg k-h