diff options
Diffstat (limited to 'drivers/video/geode/display_gx.c')
-rw-r--r-- | drivers/video/geode/display_gx.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/video/geode/display_gx.c b/drivers/video/geode/display_gx.c index 3743c8766a08..1e82ecc367dd 100644 --- a/drivers/video/geode/display_gx.c +++ b/drivers/video/geode/display_gx.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
18 | #include <asm/div64.h> | 18 | #include <asm/div64.h> |
19 | #include <asm/delay.h> | 19 | #include <asm/delay.h> |
20 | #include <asm/geode.h> | ||
20 | 21 | ||
21 | #include "gxfb.h" | 22 | #include "gxfb.h" |
22 | 23 | ||
@@ -28,10 +29,10 @@ unsigned int gx_frame_buffer_size(void) | |||
28 | /* Virtual register class = 0x02 */ | 29 | /* Virtual register class = 0x02 */ |
29 | /* VG_MEM_SIZE(512Kb units) = 0x00 */ | 30 | /* VG_MEM_SIZE(512Kb units) = 0x00 */ |
30 | 31 | ||
31 | outw(0xFC53, 0xAC1C); | 32 | outw(VSA_VR_UNLOCK, VSA_VRC_INDEX); |
32 | outw(0x0200, 0xAC1C); | 33 | outw(VSA_VR_MEM_SIZE, VSA_VRC_INDEX); |
33 | 34 | ||
34 | val = (unsigned int)(inw(0xAC1E)) & 0xFFl; | 35 | val = (unsigned int)(inw(VSA_VRC_DATA)) & 0xFFl; |
35 | return (val << 19); | 36 | return (val << 19); |
36 | } | 37 | } |
37 | 38 | ||