aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/i740fb.c
diff options
context:
space:
mode:
authorFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2012-02-19 19:11:51 +0000
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2012-02-19 19:11:51 +0000
commit94f61a7666224ab307e387ff0d146055ae77e6ab (patch)
tree22cbbfcc53a13fdd2482335b97d93966ef1ca0b2 /drivers/video/i740fb.c
parent5350c65f4f15bbc111ffa629130d3f32cdd4ccf6 (diff)
i740fb: fix compile error when CONFIG_MTRR is not selected
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/i740fb.c')
-rw-r--r--drivers/video/i740fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/i740fb.c b/drivers/video/i740fb.c
index 8be03022134..fe574d84ed9 100644
--- a/drivers/video/i740fb.c
+++ b/drivers/video/i740fb.c
@@ -1179,9 +1179,9 @@ static void __devexit i740fb_remove(struct pci_dev *dev)
struct fb_info *info = pci_get_drvdata(dev);
if (info) {
-#ifdef CONFIG_MTRR
struct i740fb_par *par = info->par;
+#ifdef CONFIG_MTRR
if (par->mtrr_reg >= 0) {
mtrr_del(par->mtrr_reg, 0, 0);
par->mtrr_reg = -1;