Received: by 10.223.176.46 with SMTP id f43csp2377453wra; Thu, 25 Jan 2018 08:57:34 -0800 (PST) X-Google-Smtp-Source: AH8x226Tfm9be1GpRVQFXdYItvoZN7FSZfoe4woCrh4/dCEGcBjiAXEP/VoixDNzrUieqFnvEewy X-Received: by 10.98.58.194 with SMTP id v63mr16700053pfj.36.1516899454220; Thu, 25 Jan 2018 08:57:34 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516899454; cv=none; d=google.com; s=arc-20160816; b=odhQFKueMsKstIPdcQOq8j2+kqA9EaNs/f6LSJJ9rGo2QrG+5MNukcTe9NOrtnTJ38 QqIWBxeaFKFhCftNUjXY2ZYvtH2M1aYBZCpmprh7TXRIPTjTvo75SzGWec+TvPDbFYdf wxPLigvXF69EdX70csESXCMtCi34X3cES6bKWLcXfCoHvEonzyUGNZ64M0lkMva6z7iF VugXkv4W+OBzmGYM/ee4G3XSFewVL8ha2nPI54YZkdvSOcbsnfbVNELfal3Q/HpHUrfr pOLSpyOyVIBB7hfjJAEnzyHsW4ZQd/BIu53X9ox7JiLwwPk/vwMOVI99qLWnoaKSQs6Z BK8g== 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=WPb8VWHBWy7aIWaQAliOiIhoHGNlpkLVM3KYNN22BQM=; b=QuSDrGz8ekSIjnU4vC4Z+rPUDuSPOOEriM89FLjS/pZwsQHfRKg+gH77oWKvukFJ8a KdHe+SGYH7AIiDpBCVThbgBbwhLLShxBAnS3gFSDqya5Xx++dGRz0ERmCsrL2pl745x8 YqXBrkTfNwI3l1+hwbNZsqsYTY33J0QUJ1V9Gpg8tUY/nGuTmaf8WzxkzL1PMlCMLjAQ V5OkMkMxlovuiQBkZvUgTKvL9HX7gaES2uYgOFtXRKDfuA8VHcxWJzAzWE53eKV+8cFm PoRUs57Ik3Zw+Z4lPtTKFIQfvOS6DgPWn8b00Lvz0FXhx5AUDJrM4wDd2kG+GsjkwmVe zz7g== 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 e64si4841687pfg.409.2018.01.25.08.57.19; Thu, 25 Jan 2018 08:57:34 -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 S1751183AbeAYQ4B (ORCPT + 99 others); Thu, 25 Jan 2018 11:56:01 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:45294 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751082AbeAYQ4B (ORCPT ); Thu, 25 Jan 2018 11:56:01 -0500 Received: from localhost (unknown [37.171.117.151]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 52FBDEF0; Thu, 25 Jan 2018 16:56:00 +0000 (UTC) Date: Thu, 25 Jan 2018 17:55:57 +0100 From: Greg KH To: richard.gong@linux.intel.com Cc: arnd@arndb.de, linux-kernel@vger.kernel.org, richard.gong@intel.com Subject: Re: [PATCHv1] driver: misc: add Intel Stratix10 service layer driver Message-ID: <20180125165557.GC21640@kroah.com> References: <1516898344-20020-1-git-send-email-richard.gong@linux.intel.com> <1516898344-20020-2-git-send-email-richard.gong@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1516898344-20020-2-git-send-email-richard.gong@linux.intel.com> User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 25, 2018 at 10:39:04AM -0600, richard.gong@linux.intel.com wrote: > --- /dev/null > +++ b/drivers/misc/intel-service/Kconfig > @@ -0,0 +1,9 @@ > +# SPDX-License-Identifier: GPL-2.0 > +config INTEL_SERVICE > + tristate "Intel Service Controller" > + default y Unless the machine can not boot without it, it needs to be 'default n' or no default at all (which is default n). > + depends on ARCH_STRATIX10 Why can this not be built on any other configuration? Why not test built at the least? > +++ b/drivers/misc/intel-service/intel_service.c > @@ -0,0 +1,703 @@ > +// SPDX-License-Identifier: GPL-2.0 Ok, you use SPDX, but then you do this: > +/* > + * Copyright (C) 2017-2018, Intel Corporation > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms and conditions of the GNU General Public License, > + * version 2, as published by the Free Software Foundation. > + * > + * This program is distributed in the hope it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for > + * more details. > + * > + * You should have received a copy of the GNU General Public License along with > + * this program. If not, see . Nothing except that copyright line needs to be there. Please delete the rest of the boilerplate crud. thanks, greg k-h