diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-10 21:27:38 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-10 21:29:59 +0100 |
commit | bcad5b21fef4573f3144608364cf5b1ea6d241e3 (patch) | |
tree | 331baf6032f1029be50dbe54d296e6d6a06cfbd5 /src/intel_module.c | |
parent | d0d65940b4f4d4993eccb8c66ec7e8b633b331da (diff) |
sna: Unbreak configure after last commit
I went a step too far... I still need some define in order to switch
between uxa/sna at compile time.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_module.c')
-rw-r--r-- | src/intel_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 63a63b8e..f6561bf3 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -335,7 +335,7 @@ static Bool intel_pci_probe(DriverPtr driver, #endif default: -#if SNA +#if USE_SNA sna_init_scrn(scrn, entity_num); #else intel_init_scrn(scrn); @@ -376,7 +376,7 @@ intel_available_options(int chipid, int busid) #endif default: -#if SNA +#if USE_SNA return sna_available_options(chipid, busid); #else return intel_uxa_available_options(chipid, busid); |