Changeset 1692

Show
Ignore:
Timestamp:
07/22/06 19:32:14 (6 years ago)
Author:
mrenzmann
Message:

kernel.h needs to be included here to make sure the 'ifndef roundup' check works as intended.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/include/compat.h

    r1691 r1692  
    4545 
    4646/* roundup() appears in Linux 2.6.18 */ 
     47#include <linux/kernel.h> 
    4748#ifndef roundup 
    4849#define roundup(x, y)   ((((x)+((y)-1))/(y))*(y))  /* to any y */