From patchwork Thu Feb 15 14:15:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Jan_Kundr=C3=A1t?= X-Patchwork-Id: 10221391 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 833F26055C for ; Thu, 15 Feb 2018 14:31:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 751602896D for ; Thu, 15 Feb 2018 14:31:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6A0A729387; Thu, 15 Feb 2018 14:31:03 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 526902896D for ; Thu, 15 Feb 2018 14:31:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1032973AbeBOObB (ORCPT ); Thu, 15 Feb 2018 09:31:01 -0500 Received: from office2.cesnet.cz ([195.113.144.244]:43570 "EHLO office2.cesnet.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1032957AbeBOObB (ORCPT ); Thu, 15 Feb 2018 09:31:01 -0500 Received: from localhost (unknown [IPv6:2001:718:1:2c:15f8:b813:1f49:2432]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by office2.cesnet.cz (Postfix) with ESMTPSA id 552FD400066; Thu, 15 Feb 2018 15:30:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cesnet.cz; s=office2; t=1518705059; bh=liGIdDCUQvdGQxFejNSa1EQcRDQV86PWUWTyRoom+3I=; h=Resent-Date:Resent-From:Resent-To:Resent-Cc:From:Date:Subject:To: Cc; b=cjtNmDF8thT2Gq+1nOea/ynD3o4U6g6dNWBpqSapOcb6R0wucmVWyOvdkTAin05xK y2slWMiC9DS4Jc3qmHDA7T/Q67aytIfKIICD0VovMpl6UrAptU6Az3MMuBgFvlxXOI dkfWpSOVqpzcg6mZcKWF89SzMzCSrFznr1iOSomk= Message-Id: From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Thu, 15 Feb 2018 15:15:07 +0100 Subject: [PATCH 1/4] spi: orion: Make the error message greppable MIME-Version: 1.0 To: linux-spi@vger.kernel.org Cc: Mark Brown , Geert Uytterhoeven , Chris Packham , Andy Shevchenko , Gregory CLEMENT , Christophe JAILLET 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 Commit 544248623b95 introduced a new user-visible string which was however split into two chunks. Thanks to Mark Brown for noticing. Signed-off-by: Jan Kundrát --- drivers/spi/spi-orion.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c index b341235d2947..ca52300baeb1 100644 --- a/drivers/spi/spi-orion.c +++ b/drivers/spi/spi-orion.c @@ -762,8 +762,8 @@ static int orion_spi_probe(struct platform_device *pdev) } if (spi->unused_hw_gpio == -1) { dev_info(&pdev->dev, - "Selected unused HW CS#%d " - "for any GPIO CSes\n", i); + "Selected unused HW CS#%d for any GPIO CSes\n", + i); spi->unused_hw_gpio = i; } }