diff options
author | Michal Simek <michal.simek@amd.com> | 2023-03-21 18:33:23 +0300 |
---|---|---|
committer | Xu Yilun <yilun.xu@intel.com> | 2023-03-25 10:35:12 +0300 |
commit | d2b727cb532b15e8b33aa259c2e885679618971c (patch) | |
tree | 6a958793b8ee15ef6bb389147016042c38e9f611 /drivers/fpga | |
parent | 83a458e330ff54951d3ddd378f970ab96b864020 (diff) | |
download | linux-d2b727cb532b15e8b33aa259c2e885679618971c.tar.xz |
fpga: xilinx-pr-decoupler: Use readl wrapper instead of pure readl
Driver has IO wrappers but xlnx_pr_decouple_read() is not used and readl is
used instead which is just wrong.
It is also generating sparse issue that xlnx_pr_decouple_read() is unused.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Tom Rix <trix@redhat.com>
Acked-by: Xu Yilun <yilun.xu@intel.com>
Link: https://lore.kernel.org/r/0381e4e8061c2fee182a104768e84feff3a82d25.1679412800.git.michal.simek@amd.com
Signed-off-by: Xu Yilun <yilun.xu@intel.com>
Diffstat (limited to 'drivers/fpga')
-rw-r--r-- | drivers/fpga/xilinx-pr-decoupler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fpga/xilinx-pr-decoupler.c b/drivers/fpga/xilinx-pr-decoupler.c index 2d9c491f7be9..b76d85449b8f 100644 --- a/drivers/fpga/xilinx-pr-decoupler.c +++ b/drivers/fpga/xilinx-pr-decoupler.c @@ -69,7 +69,7 @@ static int xlnx_pr_decoupler_enable_show(struct fpga_bridge *bridge) if (err) return err; - status = readl(priv->io_base); + status = xlnx_pr_decouple_read(priv, CTRL_OFFSET); clk_disable(priv->clk); |