Received: by 10.223.164.200 with SMTP id h8csp590927wrb; Sun, 5 Nov 2017 16:07:31 -0800 (PST) X-Google-Smtp-Source: ABhQp+SjbCVOwLWKnMQV7upGuePQEVwgZh/igSbKX0LGkYoTNXBcJ40hfzGLw99YGW+BlMX+/iLb X-Received: by 10.84.240.12 with SMTP id y12mr13017936plk.249.1509926851602; Sun, 05 Nov 2017 16:07:31 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1509926851; cv=none; d=google.com; s=arc-20160816; b=n60VDakC4HDB4YEn+PUylO4V0dGfhiz0KivI0JU41DM5JjkRtLnItvp/3SgMuKL/Fm UW+gz6Slxff9JOYhT0Tvuio48vghnijbRIJ16Or238jZuuWZC9iI2EgHxR2YcjFTw3Yr Lqg7VwfUZqmzLILBrS7sORKRPLRUlXNhZ6zcggX034e1a6bl+72leobWIwX/YoMJDbja Gtj9La4UZs8G3bzU4BOdQyVtuJdYlbHSf8DZXcNB8XWLSGEJgLvwrhcfcfOT0ju//DKx wDqV9drU9UAdzXvK72pOd4d/mpL7JyYoBXXh1Q85iO91c7v/11N7wNPDeSc4WhKznroL sBoQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=AKT6m3EKsIQrIwyPudHx7uBT/90674c+2V0Xx3sh4CY=; b=UmrOxY9bFXBFRL9Bg74qxDDPYKaqX3v5sdDhbzrIEn6PwX2w5F3u9BJLEPUsAzYRFW LNHFBHQBQZkWZFmzO42OnwSnaMCaJczqMZ6lcWJ5pN7w4qdQoV3GvrhnBGWpt6Dc59PO +tgb6Lu7QXB0O8gMWT4/RZle7rN63CjmaMJxhRJ6nLBQg+naFc2oNrSBr2BWGp37e84Q XRT7cWZL1jbNeH0xbqalJW9YbCCAEIybp9e74D7E9X1I4YEdHM1mNEDy0OfhnjH6FWQ9 oLmgA+898SkCYvS571/BAEbD8iqmAUYxRFJRrlAJfgD75QEdRq6jKKA7EEw6w26ZvfrE FKwQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w8si9225504plk.798.2017.11.05.16.07.18; Sun, 05 Nov 2017 16:07:31 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751405AbdKFAG0 (ORCPT + 96 others); Sun, 5 Nov 2017 19:06:26 -0500 Received: from mga02.intel.com ([134.134.136.20]:39832 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750904AbdKFAGY (ORCPT ); Sun, 5 Nov 2017 19:06:24 -0500 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Nov 2017 16:06:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,350,1505804400"; d="scan'208";a="1214570716" Received: from tolun-mobl.ger.corp.intel.com (HELO zurbaran.ger.intel.com) ([10.252.50.55]) by fmsmga001.fm.intel.com with ESMTP; 05 Nov 2017 16:06:21 -0800 Date: Mon, 6 Nov 2017 01:06:20 +0100 From: Samuel Ortiz To: Colin King Cc: Andy Shevchenko , "David S . Miller" , Stephen Hemminger , Johannes Berg , linux-wireless@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] NFC: fdp: make struct nci_ops static Message-ID: <20171106000620.GD27831@zurbaran.ger.intel.com> References: <20171005094712.28627-1-colin.king@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171005094712.28627-1-colin.king@canonical.com> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 05, 2017 at 10:47:12AM +0100, Colin King wrote: > From: Colin Ian King > > The structure nci_ops is local to the source and does not need to > be in global scope, so make it static. > > Cleans up sparse warning: > symbol 'nci_ops' was not declared. Should it be static? > > Signed-off-by: Colin Ian King > --- > drivers/nfc/fdp/fdp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied as well, thanks. Cheers, Samuel. From 1580430726891198668@xxx Thu Oct 05 15:09:53 +0000 2017 X-GM-THRID: 1580410478618154068 X-Gmail-Labels: Inbox,Category Forums