Message ID | 20210524162837.2221590-1-trix@redhat.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | generalize fpga_mgr_load | expand |
diff --git a/drivers/fpga/fpga-mgr.c b/drivers/fpga/fpga-mgr.c index 5247703a3743d..34d251e87ca6c 100644 --- a/drivers/fpga/fpga-mgr.c +++ b/drivers/fpga/fpga-mgr.c @@ -369,6 +369,9 @@ int fpga_mgr_load(struct fpga_manager *mgr, struct fpga_image_info *info) { const struct fpga_manager_update_ops *uops = &mgr->mops->reconfig; + if (info->flags & FPGA_MGR_REIMAGE) + uops = &mgr->mops->reimage; + if (!uops->write_complete || !uops->write_init || (!uops->write && !uops->write_sg) ||