drm_compat: it's CONFIG_HIGHMEM, not CONFIG_HIMEM
authorKeith Packard <keithp@keithp.com>
Tue, 24 Jun 2008 05:03:06 +0000 (22:03 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 24 Jun 2008 16:52:33 +0000 (09:52 -0700)
A mis-spelled config option (was it spelled that way in the past?)
eliminated kmap_atomic_prot_pfn from core DRM.

linux-core/drm_compat.h

index 30834f3..6aa19c5 100644 (file)
@@ -329,7 +329,7 @@ typedef _Bool                   bool;
 #endif
 
 
-#if (defined(CONFIG_X86) && defined(CONFIG_X86_32) && defined(CONFIG_HIMEM))
+#if (defined(CONFIG_X86) && defined(CONFIG_X86_32) && defined(CONFIG_HIGHMEM))
 #define DRM_KMAP_ATOMIC_PROT_PFN
 extern void *kmap_atomic_prot_pfn(unsigned long pfn, enum km_type type,
                                  pgprot_t protection);