diff options
author | Dave Airlie <airlied@redhat.com> | 2012-06-16 08:19:35 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-06-16 08:19:35 +0100 |
commit | a19237fad2492d70777167c631f4e6e1fae0e908 (patch) | |
tree | 8d6fc169ad50099f9c926298557979e3bb0f7724 | |
parent | c8a5c5a0dd9adc46b03b898c9c1719dbbde05ba1 (diff) |
radeon: avoid including large static struct twice.
Just extern this in the one file that needs access.
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | src/radeon_kms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c index 7180c600..9a31c316 100644 --- a/src/radeon_kms.c +++ b/src/radeon_kms.c @@ -48,7 +48,6 @@ #include <X11/extensions/dpms.h> #endif -#include "radeon_chipset_gen.h" #include "radeon_chipinfo_gen.h" #define CURSOR_WIDTH 64 @@ -58,6 +57,7 @@ #include "radeon_cs_gem.h" #include "radeon_vbo.h" +extern SymTabRec *RADEONChipsets; static Bool radeon_setup_kernel_mem(ScreenPtr pScreen); const OptionInfoRec RADEONOptions_KMS[] = { |