diff options
author | Nava kishore Manne <nava.manne@xilinx.com> | 2022-04-23 20:02:32 +0300 |
---|---|---|
committer | Xu Yilun <yilun.xu@intel.com> | 2022-05-10 11:03:52 +0300 |
commit | 57ce2e406fe1fa005e8fdbf20936c791252ac7bc (patch) | |
tree | 31db0ad14979765a183a3cd44b247c77d3aac462 /drivers/fpga/fpga-mgr.c | |
parent | 558094cb8d54761e8e52c4579a8c5a595ddd170a (diff) | |
download | linux-57ce2e406fe1fa005e8fdbf20936c791252ac7bc.tar.xz |
fpga: fix for coding style issues
fixes the below checks reported by checkpatch.pl:
- Lines should not end with a '('
- Alignment should match open parenthesis
Signed-off-by: Nava kishore Manne <nava.manne@xilinx.com>
Link: https://lore.kernel.org/r/20220423170235.2115479-3-nava.manne@xilinx.com
Signed-off-by: Xu Yilun <yilun.xu@intel.com>
Diffstat (limited to 'drivers/fpga/fpga-mgr.c')
-rw-r--r-- | drivers/fpga/fpga-mgr.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/fpga/fpga-mgr.c b/drivers/fpga/fpga-mgr.c index d49a9ce34568..24dee27c7897 100644 --- a/drivers/fpga/fpga-mgr.c +++ b/drivers/fpga/fpga-mgr.c @@ -148,11 +148,12 @@ static int fpga_mgr_write_init_buf(struct fpga_manager *mgr, int ret; mgr->state = FPGA_MGR_STATE_WRITE_INIT; - if (!mgr->mops->initial_header_size) + if (!mgr->mops->initial_header_size) { ret = fpga_mgr_write_init(mgr, info, NULL, 0); - else - ret = fpga_mgr_write_init( - mgr, info, buf, min(mgr->mops->initial_header_size, count)); + } else { + count = min(mgr->mops->initial_header_size, count); + ret = fpga_mgr_write_init(mgr, info, buf, count); + } if (ret) { dev_err(&mgr->dev, "Error preparing FPGA for writing\n"); |