diff options
author | Andy Lutomirski | 2013-05-14 01:58:46 +0200 |
---|---|---|
committer | Dave Airlie | 2013-05-31 05:37:36 +0200 |
commit | 63e28a7a5ffce59b645ca9cbcc01e1e8be56bd75 (patch) | |
tree | 9f1772e41599f71bda18c71cc78480d7576e1b73 /include/video | |
parent | radeon: Switch to arch_phys_wc_add and add a missing ..._del (diff) | |
download | kernel-qcow2-linux-63e28a7a5ffce59b645ca9cbcc01e1e8be56bd75.tar.gz kernel-qcow2-linux-63e28a7a5ffce59b645ca9cbcc01e1e8be56bd75.tar.xz kernel-qcow2-linux-63e28a7a5ffce59b645ca9cbcc01e1e8be56bd75.zip |
uvesafb: Clean up MTRR code
The old code allowed very strange memory types. Now it works like
all the other video drivers: ioremap_wc is used unconditionally,
and MTRRs are set if PAT is unavailable (unless MTRR is disabled
by a module parameter).
UC, WB, and WT support is gone. If there are MTRR conflicts that prevent
addition of a WC MTRR, adding a non-conflicting MTRR is pointless; it's
better to just turn off MTRR support entirely.
As an added bonus, any MTRR added is freed on unload.
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Andy Lutomirski <luto@amacapital.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/uvesafb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/video/uvesafb.h b/include/video/uvesafb.h index 1a91850cb961..30f53625415c 100644 --- a/include/video/uvesafb.h +++ b/include/video/uvesafb.h @@ -134,6 +134,7 @@ struct uvesafb_par { int mode_idx; struct vbe_crtc_ib crtc; + int mtrr_handle; }; #endif /* _UVESAFB_H */ |