diff options
author | Adam Jackson <ajax@redhat.com> | 2009-10-16 14:05:54 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-09-22 13:52:45 -0400 |
commit | dc85e94743390290ad9e00c4a985d6c2f6ed80f1 (patch) | |
tree | 773a090a15e2e0b1bd850cee8fa34db2406d90f8 | |
parent | 582c3fe3865918654b5d42cc090c8a1660ecfbe7 (diff) |
bus: remove some dead struct fields
Tested-by: Jeremy Huddleston <jeremyhu@apple.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | hw/xfree86/os-support/shared/vidmem.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/xfree86/os-support/shared/vidmem.c b/hw/xfree86/os-support/shared/vidmem.c index 89db4cc9d..54f6c6497 100644 --- a/hw/xfree86/os-support/shared/vidmem.c +++ b/hw/xfree86/os-support/shared/vidmem.c @@ -51,11 +51,9 @@ */ typedef struct { - unsigned long physBase; unsigned long size; pointer virtBase; pointer mtrrInfo; - int flags; } MappingRec, *MappingPtr; typedef struct { @@ -169,10 +167,8 @@ xf86MakeNewMapping(int ScreenNum, int Flags, unsigned long Base, unsigned long S vp = getVidMapRec(ScreenNum); mp = newMapping(vp); - mp->physBase = Base; mp->size = Size; mp->virtBase = Vbase; - mp->flags = Flags; } void @@ -206,10 +202,8 @@ xf86MapVidMem(int ScreenNum, int Flags, unsigned long Base, unsigned long Size) vp = getVidMapRec(ScreenNum); mp = newMapping(vp); - mp->physBase = Base; mp->size = Size; mp->virtBase = vbase; - mp->flags = Flags; /* * Check the "mtrr" option even when MTRR isn't supported to avoid |