diff options
| author | Dan Carpenter <[email protected]> | 2016-10-12 07:14:09 -0500 |
|---|---|---|
| committer | Bjorn Helgaas <[email protected]> | 2016-10-12 07:14:09 -0500 |
| commit | 08015ee0ff8a221bdc9ee66cfcc7e3379e9bcd28 (patch) | |
| tree | df1c7c6675569ec165ead8b0aac16dfc93f8c718 | |
| parent | 9d274755c6f13b574aba6e09ab434d9f84c266a0 (diff) | |
PCI: rockchip: Indent "if" statement body
Body of an "if" statement wasn't indented. Add a tab.
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
| -rw-r--r-- | drivers/pci/host/pcie-rockchip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-rockchip.c b/drivers/pci/host/pcie-rockchip.c index 59bf0dbc766f..e0b22dab9b7a 100644 --- a/drivers/pci/host/pcie-rockchip.c +++ b/drivers/pci/host/pcie-rockchip.c @@ -972,7 +972,7 @@ static int rockchip_pcie_prog_ob_atu(struct rockchip_pcie *rockchip, return -EINVAL; if (region_no == 0) { if (AXI_REGION_0_SIZE < (2ULL << num_pass_bits)) - return -EINVAL; + return -EINVAL; } if (region_no != 0) { if (AXI_REGION_SIZE < (2ULL << num_pass_bits)) |