From: Tom Rix <trix@redhat.com>
To: Moritz Fischer <mdf@kernel.org>, linux-fpga@vger.kernel.org
Cc: hao.wu@intel.com, michal.simek@xilinx.com,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, russell.h.weight@intel.com,
matthew.gerlach@intel.com
Subject: Re: [PATCH v2 10/10] fpga: fpga-mgr: altera-pr-ip: Simplify registration
Date: Mon, 5 Oct 2020 13:13:33 -0700 [thread overview]
Message-ID: <3c9f78f1-a4b0-c1b8-61a1-93e9b7b57999@redhat.com> (raw)
In-Reply-To: <20201005173735.162408-11-mdf@kernel.org>
On 10/5/20 10:37 AM, Moritz Fischer wrote:
> Simplify registration using new devm_fpga_mgr_register() API.
Should change old commit message to something about removing symbol
alt_pr_platform_remove
Otherwise fine.
Reviewed-by: Tom Rix <trix@redhat.com>
>
> Signed-off-by: Moritz Fischer <mdf@kernel.org>
> ---
>
> Changes from v1:
> - Removed part that removes unused symbol
>
> ---
> drivers/fpga/altera-pr-ip-core-plat.c | 10 ----------
> drivers/fpga/altera-pr-ip-core.c | 4 +---
> 2 files changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/fpga/altera-pr-ip-core-plat.c b/drivers/fpga/altera-pr-ip-core-plat.c
> index 99b9cc0e70f0..b008a6b8d2d3 100644
> --- a/drivers/fpga/altera-pr-ip-core-plat.c
> +++ b/drivers/fpga/altera-pr-ip-core-plat.c
> @@ -28,15 +28,6 @@ static int alt_pr_platform_probe(struct platform_device *pdev)
> return alt_pr_register(dev, reg_base);
> }
>
> -static int alt_pr_platform_remove(struct platform_device *pdev)
> -{
> - struct device *dev = &pdev->dev;
> -
> - alt_pr_unregister(dev);
> -
> - return 0;
> -}
> -
> static const struct of_device_id alt_pr_of_match[] = {
> { .compatible = "altr,a10-pr-ip", },
> {},
> @@ -46,7 +37,6 @@ MODULE_DEVICE_TABLE(of, alt_pr_of_match);
>
> static struct platform_driver alt_pr_platform_driver = {
> .probe = alt_pr_platform_probe,
> - .remove = alt_pr_platform_remove,
> .driver = {
> .name = "alt_a10_pr_ip",
> .of_match_table = alt_pr_of_match,
> diff --git a/drivers/fpga/altera-pr-ip-core.c b/drivers/fpga/altera-pr-ip-core.c
> index 2cf25fd5e897..5b130c4d9882 100644
> --- a/drivers/fpga/altera-pr-ip-core.c
> +++ b/drivers/fpga/altera-pr-ip-core.c
> @@ -195,9 +195,7 @@ int alt_pr_register(struct device *dev, void __iomem *reg_base)
> if (!mgr)
> return -ENOMEM;
>
> - dev_set_drvdata(dev, mgr);
> -
> - return fpga_mgr_register(mgr);
> + return devm_fpga_mgr_register(dev, mgr);
> }
> EXPORT_SYMBOL_GPL(alt_pr_register);
>
prev parent reply other threads:[~2020-10-05 20:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-05 17:37 Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 01/10] fpga: fpga-mgr: Add devm_fpga_mgr_register() API Moritz Fischer
2020-10-09 21:25 ` Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 02/10] fpga: fpga-mgr: altera-ps-spi: Simplify registration Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 03/10] fpga: fpga-mgr: dfl-fme-mgr: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 04/10] fpga: fpga-mgr: ice40-spi: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 05/10] fpga: fpga-mgr: machxo2-spi: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 06/10] fpga: fpga-mgr: socfpga: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 07/10] fpga: fpga-mgr: ts73xx: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 08/10] fpga: fpga-mgr: xilinx-spi: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 09/10] fpga: fpga-mgr: zynqmp: " Moritz Fischer
2020-10-05 17:37 ` [PATCH v2 10/10] fpga: fpga-mgr: altera-pr-ip: " Moritz Fischer
2020-10-05 20:13 ` Tom Rix [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3c9f78f1-a4b0-c1b8-61a1-93e9b7b57999@redhat.com \
--to=trix@redhat.com \
--cc=hao.wu@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-fpga@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matthew.gerlach@intel.com \
--cc=mdf@kernel.org \
--cc=michal.simek@xilinx.com \
--cc=russell.h.weight@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).