From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wu Hao Subject: Re: [PATCH v3 16/21] fpga: dfl: add fpga region platform driver for FME Date: Thu, 1 Feb 2018 13:23:45 +0800 Message-ID: <20180201052345.GA10393@hao-dev> References: <1511764948-20972-1-git-send-email-hao.wu@intel.com> <1511764948-20972-17-git-send-email-hao.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org 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: linux-api@vger.kernel.org On Wed, Jan 31, 2018 at 02:46:28PM -0600, Alan Tull wrote: > On Mon, Nov 27, 2017 at 12:42 AM, Wu Hao wrote: > > Hi Hao, > > Just fix the SPDX, otherwise it looks good. Sure, will fix it. Thanks for the review. :) Thanks Hao > > > This patch adds fpga region platform driver for FPGA Management Engine. > > It register an fpga region with given fpga manager / bridge device. > > > > 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-region.c b/drivers/fpga/fpga-dfl-fme-region.c > > new file mode 100644 > > index 0000000..0b988ab > > --- /dev/null > > +++ b/drivers/fpga/fpga-dfl-fme-region.c > > @@ -0,0 +1,92 @@ > > +/* > > + * FPGA Region 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. > > + * SPDX-License-Identifier: GPL-2.0 > > + */ > > + > > +#include > > Thanks, > Alan