diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2015-02-25 08:25:20 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-03-10 08:47:09 -0400 |
commit | b3924dd7a943613939f8b019690d1f919ece035c (patch) | |
tree | 01386a4c4004eb63ab6e84240d807bd356aa5a9b | |
parent | 7dea97e0379dbb2983a9f009c7cdaeb6bbe4c98e (diff) |
fbdev: pm3fb: cleanup some confusing indenting
This if statement should be pushed out one tab to line up with the rest.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/fbdev/pm3fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/fbdev/pm3fb.c b/drivers/video/fbdev/pm3fb.c index 4bf3273d0433..77b99ed39ad0 100644 --- a/drivers/video/fbdev/pm3fb.c +++ b/drivers/video/fbdev/pm3fb.c | |||
@@ -1479,9 +1479,9 @@ static void pm3fb_remove(struct pci_dev *dev) | |||
1479 | fb_dealloc_cmap(&info->cmap); | 1479 | fb_dealloc_cmap(&info->cmap); |
1480 | 1480 | ||
1481 | #ifdef CONFIG_MTRR | 1481 | #ifdef CONFIG_MTRR |
1482 | if (par->mtrr_handle >= 0) | 1482 | if (par->mtrr_handle >= 0) |
1483 | mtrr_del(par->mtrr_handle, info->fix.smem_start, | 1483 | mtrr_del(par->mtrr_handle, info->fix.smem_start, |
1484 | info->fix.smem_len); | 1484 | info->fix.smem_len); |
1485 | #endif /* CONFIG_MTRR */ | 1485 | #endif /* CONFIG_MTRR */ |
1486 | iounmap(info->screen_base); | 1486 | iounmap(info->screen_base); |
1487 | release_mem_region(fix->smem_start, fix->smem_len); | 1487 | release_mem_region(fix->smem_start, fix->smem_len); |