diff options
Diffstat (limited to 'drivers/char/agp/agp.h')
-rw-r--r-- | drivers/char/agp/agp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/agp/agp.h b/drivers/char/agp/agp.h index 9bd68d9f0f59..fdbca25a3948 100644 --- a/drivers/char/agp/agp.h +++ b/drivers/char/agp/agp.h | |||
@@ -93,12 +93,12 @@ struct aper_size_info_fixed { | |||
93 | 93 | ||
94 | struct agp_bridge_driver { | 94 | struct agp_bridge_driver { |
95 | struct module *owner; | 95 | struct module *owner; |
96 | void *aperture_sizes; | 96 | const void *aperture_sizes; |
97 | int num_aperture_sizes; | 97 | int num_aperture_sizes; |
98 | enum aper_size_type size_type; | 98 | enum aper_size_type size_type; |
99 | int cant_use_aperture; | 99 | int cant_use_aperture; |
100 | int needs_scratch_page; | 100 | int needs_scratch_page; |
101 | struct gatt_mask *masks; | 101 | const struct gatt_mask *masks; |
102 | int (*fetch_size)(void); | 102 | int (*fetch_size)(void); |
103 | int (*configure)(void); | 103 | int (*configure)(void); |
104 | void (*agp_enable)(struct agp_bridge_data *, u32); | 104 | void (*agp_enable)(struct agp_bridge_data *, u32); |
@@ -119,7 +119,7 @@ struct agp_bridge_driver { | |||
119 | 119 | ||
120 | struct agp_bridge_data { | 120 | struct agp_bridge_data { |
121 | const struct agp_version *version; | 121 | const struct agp_version *version; |
122 | struct agp_bridge_driver *driver; | 122 | const struct agp_bridge_driver *driver; |
123 | struct vm_operations_struct *vm_ops; | 123 | struct vm_operations_struct *vm_ops; |
124 | void *previous_size; | 124 | void *previous_size; |
125 | void *current_size; | 125 | void *current_size; |
@@ -290,7 +290,7 @@ void agp3_generic_cleanup(void); | |||
290 | 290 | ||
291 | /* aperture sizes have been standardised since v3 */ | 291 | /* aperture sizes have been standardised since v3 */ |
292 | #define AGP_GENERIC_SIZES_ENTRIES 11 | 292 | #define AGP_GENERIC_SIZES_ENTRIES 11 |
293 | extern struct aper_size_info_16 agp3_generic_sizes[]; | 293 | extern const struct aper_size_info_16 agp3_generic_sizes[]; |
294 | 294 | ||
295 | #define virt_to_gart(x) (phys_to_gart(virt_to_phys(x))) | 295 | #define virt_to_gart(x) (phys_to_gart(virt_to_phys(x))) |
296 | #define gart_to_virt(x) (phys_to_virt(gart_to_phys(x))) | 296 | #define gart_to_virt(x) (phys_to_virt(gart_to_phys(x))) |