From patchwork Thu Apr 11 16:42:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Noralf_Tr=C3=B8nnes?= X-Patchwork-Id: 10896421 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1107F1805 for ; Thu, 11 Apr 2019 16:43:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F2CC928D87 for ; Thu, 11 Apr 2019 16:43:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DF64228DAA; Thu, 11 Apr 2019 16:43:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6C9CB28DA4 for ; Thu, 11 Apr 2019 16:43:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726913AbfDKQnA (ORCPT ); Thu, 11 Apr 2019 12:43:00 -0400 Received: from smtp.domeneshop.no ([194.63.252.55]:35024 "EHLO smtp.domeneshop.no" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726874AbfDKQm7 (ORCPT ); Thu, 11 Apr 2019 12:42:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tronnes.org; s=ds201810; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=XrJYpk2fJvP/Fy8sC9TWU6ZvONB4MHtoNqzHilTJUYY=; b=FvoADPq/n4xXPj7cNGr4e33k1SrdrQABkeQ33wdQNLQk1scTY4EyfONjVet1NKtGkqUug0VX7TD250L1rVs/jF4ZdTokEi9MDA6Cd6qUR1SW55VxlL8FukXHjFcpxIzlRVFKMWuyv+bLtU0ckwhoCnsndEnPKQGI2VFmrncYEL5etH4LvkSWqjRK0WUGP2PPJcInL+VtV9Cx+mblN+WUjG4VHajFajyy+XZx1I8FpvMN5RqtA/ITswvYhD3MxiXb0okX50vhANFRRWIzD289BEAgIzcXSbpImfh+UlASSPh8LlkEIFYwUrdGVGtAXOmd4i+s+Rc8GxOaNP58QyCLRA==; Received: from 211.81-166-168.customer.lyse.net ([81.166.168.211]:49732 helo=localhost.localdomain) by smtp.domeneshop.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.84_2) (envelope-from ) id 1hEcmv-0007LK-D0; Thu, 11 Apr 2019 18:42:57 +0200 From: =?utf-8?q?Noralf_Tr=C3=B8nnes?= To: linux-spi@vger.kernel.org, dri-devel@lists.freedesktop.org Cc: broonie@kernel.org, eric@anholt.net, stefan.wahren@i2se.com, kernel@martin.sperl.org, meghana.madhyastha@gmail.com, linux-rpi-kernel@lists.infradead.org, =?utf-8?q?Noralf_Tr=C3=B8nnes?= Subject: [PATCH v4 1/4] spi: Remove warning in spi_split_transfers_maxsize() Date: Thu, 11 Apr 2019 18:42:32 +0200 Message-Id: <20190411164235.49771-2-noralf@tronnes.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190411164235.49771-1-noralf@tronnes.org> References: <20190411164235.49771-1-noralf@tronnes.org> MIME-Version: 1.0 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Don't warn about splitting transfers, the info is available in the statistics if needed. Signed-off-by: Noralf Trønnes --- drivers/spi/spi.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 9a7def7c3237..05875e63be43 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2692,11 +2692,6 @@ static int __spi_split_transfer_maxsize(struct spi_controller *ctlr, size_t offset; size_t count, i; - /* warn once about this fact that we are splitting a transfer */ - dev_warn_once(&msg->spi->dev, - "spi_transfer of length %i exceed max length of %zu - needed to split transfers\n", - xfer->len, maxsize); - /* calculate how many we have to replace */ count = DIV_ROUND_UP(xfer->len, maxsize);