Commit 5ebab1c1 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[AGPGART] aper_base can't be signed.

We pass this to remap_pfn_range after shifting it right.
Nasty things happen as a result.
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent dccd43f9
...@@ -54,7 +54,7 @@ struct agp_kern_info { ...@@ -54,7 +54,7 @@ struct agp_kern_info {
struct pci_dev *device; struct pci_dev *device;
enum chipset_type chipset; enum chipset_type chipset;
unsigned long mode; unsigned long mode;
off_t aper_base; unsigned long aper_base;
size_t aper_size; size_t aper_size;
int max_memory; /* In pages */ int max_memory; /* In pages */
int current_memory; int current_memory;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment