Missing KERNEL_VERSION macro

main
Patrice Mandin 2008-04-07 22:24:24 +02:00
parent 27c3785d3f
commit db61f02bd7
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
#include "drmP.h"
#if defined( CONFIG_X86 ) && (LINUX_VERSION_CODE >= (2,6,24))
#if defined( CONFIG_X86 ) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24))
static void drm_clflush_page(struct page *page)
{
uint8_t *page_virtual;
@ -66,7 +66,7 @@ static void drm_ttm_ipi_handler(void *null)
void drm_ttm_cache_flush(struct page *pages[], unsigned long num_pages)
{
#if defined( CONFIG_X86 ) && (LINUX_VERSION_CODE >= (2,6,24))
#if defined( CONFIG_X86 ) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24))
if (cpu_has_clflush) {
drm_ttm_cache_flush_clflush(pages, num_pages);
return;