From patchwork Sun May 20 06:50:34 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 49721 Received: from vger.kernel.org ([209.132.180.67]) by www.linuxtv.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fKICu-0002V9-0l; Sun, 20 May 2018 06:52:40 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752620AbeETGwL (ORCPT + 1 other); Sun, 20 May 2018 02:52:11 -0400 Received: from sauhun.de ([88.99.104.3]:41510 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751523AbeETGun (ORCPT ); Sun, 20 May 2018 02:50:43 -0400 Received: from localhost (p54B33698.dip0.t-ipconnect.de [84.179.54.152]) by pokefinder.org (Postfix) with ESMTPSA id 4BFFE374E21; Sun, 20 May 2018 08:50:42 +0200 (CEST) From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Peter Rosin , Wolfram Sang , Mauro Carvalho Chehab , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/7] media: cx231xx: don't check number of messages in the driver Date: Sun, 20 May 2018 08:50:34 +0200 Message-Id: <20180520065039.7989-4-wsa@the-dreams.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180520065039.7989-1-wsa@the-dreams.de> References: <20180520065039.7989-1-wsa@the-dreams.de> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Since commit 1eace8344c02 ("i2c: add param sanity check to i2c_transfer()"), the I2C core does this check now. We can remove it from drivers. Signed-off-by: Wolfram Sang --- Only build tested. drivers/media/usb/cx231xx/cx231xx-i2c.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media/usb/cx231xx/cx231xx-i2c.c b/drivers/media/usb/cx231xx/cx231xx-i2c.c index 6e1bef2a45bb..15a91169e749 100644 --- a/drivers/media/usb/cx231xx/cx231xx-i2c.c +++ b/drivers/media/usb/cx231xx/cx231xx-i2c.c @@ -376,8 +376,6 @@ static int cx231xx_i2c_xfer(struct i2c_adapter *i2c_adap, struct cx231xx *dev = bus->dev; int addr, rc, i, byte; - if (num <= 0) - return 0; mutex_lock(&dev->i2c_lock); for (i = 0; i < num; i++) {