From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 79F38C433E7 for ; Sun, 11 Oct 2020 14:45:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 38BC7208C7 for ; Sun, 11 Oct 2020 14:45:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602427526; bh=vNCbxLl9Gr6BpMkpxMUmtZ4tHw70QAR6+ZwOOIXagz0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=CjR/tdo30UpK4wN9+zV+HN4ftgauCjxQ6qqEruOB2FOtsjRid6Ir9yQc6ExVsE7SH n/HCuTGtrZ2yxdwxx/uKlSlSn2OmXvKQPys9wxTlTflNKCBK/hFBTT5Pvq79gAvW9c VtBI0dEgfZBC8NCgj+ySH25Y9EYveySjrmSMc+t8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388061AbgJKOpZ (ORCPT ); Sun, 11 Oct 2020 10:45:25 -0400 Received: from mail.kernel.org ([198.145.29.99]:35478 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388019AbgJKOpZ (ORCPT ); Sun, 11 Oct 2020 10:45:25 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A080C2078B; Sun, 11 Oct 2020 14:45:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602427525; bh=vNCbxLl9Gr6BpMkpxMUmtZ4tHw70QAR6+ZwOOIXagz0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=a40xISPPyXLStVVrSfNh0f5nWONhK4KbfGT1Tbd2n/lCPhfScnA40Mr3/Qg8tYJEn h5PamBNgikRqAivH/5Qd1lcGDUZp52kreNWEjBqWCi3/tZZ2o0+x9i4Lt9Om2ag4tR d+TMNpC87FKLFWYr2Y2bBJ7B6WaRt+ZcVqVxfUYw= Date: Sun, 11 Oct 2020 16:45:22 +0200 From: Greg KH To: Xu Yilun Cc: mdf@kernel.org, krzk@kernel.org, linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org, trix@redhat.com, lgoncalv@redhat.com, hao.wu@intel.com Subject: Re: [PATCH v9 4/6] fpga: dfl: move dfl bus related APIs to include/linux/fpga/dfl.h Message-ID: <20201011144522.GB271501@kroah.com> References: <1602313793-21421-1-git-send-email-yilun.xu@intel.com> <1602313793-21421-5-git-send-email-yilun.xu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1602313793-21421-5-git-send-email-yilun.xu@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-fpga@vger.kernel.org On Sat, Oct 10, 2020 at 03:09:51PM +0800, Xu Yilun wrote: > Now the dfl drivers could be made as independent modules and put in > different folders according to their functionalities. In order for > scattered dfl device drivers to include dfl bus APIs, move the > dfl bus APIs to a new header file in the public folder. > > [mdf@kernel.org: Fixed up MAINTAINERS entry merge] > Signed-off-by: Xu Yilun > Reviewed-by: Tom Rix > Acked-by: Wu Hao > Signed-off-by: Moritz Fischer > --- > v2: updated the MAINTAINERS under FPGA DFL DRIVERS > improve the comments > rename the dfl-bus.h to dfl.h > v3: rebase the patch for previous changes > v9: rebase the patch for bus name changes back to "dfl" > --- > MAINTAINERS | 1 + > drivers/fpga/dfl.c | 1 + > drivers/fpga/dfl.h | 72 ---------------------------------------- > include/linux/fpga/dfl.h | 86 ++++++++++++++++++++++++++++++++++++++++++++++++ Why in the fpga directory? thanks, greg k-h