From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: Date: Thu, 1 Feb 2018 13:15:43 +0800 From: Wu Hao Subject: Re: [PATCH v3 15/21] fpga: dfl: add fpga bridge platform driver for FME Message-ID: <20180201051543.GC10273@hao-dev> References: <1511764948-20972-1-git-send-email-hao.wu@intel.com> <1511764948-20972-16-git-send-email-hao.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: To: Alan Tull Cc: Moritz Fischer , linux-fpga@vger.kernel.org, linux-kernel , linux-api@vger.kernel.org, "Kang, Luwei" , "Zhang, Yi Z" , Tim Whisonant , Enno Luebbers , Shiva Rao , Christopher Rauer List-ID: On Wed, Jan 31, 2018 at 09:16:58AM -0600, Alan Tull wrote: > On Mon, Nov 27, 2017 at 12:42 AM, Wu Hao wrote: > > Hi Hao, > > One fix below. Besides that, please add my ack. > > > This patch adds fpga bridge platform driver for FPGA Management Engine. > > It implements the enable_set call back for fpga bridge. > > > > Signed-off-by: Tim Whisonant > > Signed-off-by: Enno Luebbers > > Signed-off-by: Shiva Rao > > Signed-off-by: Christopher Rauer > > Signed-off-by: Wu Hao > > Acked-by: Alan Tull > > > diff --git a/drivers/fpga/fpga-dfl-fme-br.c b/drivers/fpga/fpga-dfl-fme-br.c > > new file mode 100644 > > index 0000000..db2603b > > --- /dev/null > > +++ b/drivers/fpga/fpga-dfl-fme-br.c > > @@ -0,0 +1,87 @@ > > +/* > > + * FPGA Bridge Driver for FPGA Management Engine (FME) > > + * > > + * Copyright (C) 2017 Intel Corporation, Inc. > > + * > > + * Authors: > > + * Wu Hao > > + * Joseph Grecco > > + * Enno Luebbers > > + * Tim Whisonant > > + * Ananda Ravuri > > + * Henry Mitchel > > + * > > + * This work is licensed under the terms of the GNU GPL version 2. > > If we're using the SPDX, then please get rid of the above line. > > > + * SPDX-License-Identifier: GPL-2.0 > > + */ > > The SPDX line should be the first line of the file with a // (for .c > files), please see: > > https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/Documentation/process/license-rules.rst > > Same thing for other files. Thanks for the review. Sure, will fix this for all driver files in the next version. Thanks Hao > > Alan