Changeset 347 for GPL/trunk/lib32/misc.c


Ignore:
Timestamp:
Apr 21, 2008, 2:46:45 AM (17 years ago)
Author:
Brendan Oakley
Message:

Adjustments to linux headers and lib32 for compiling resync 1.0.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/lib32/misc.c

    r73 r347  
    120120//******************************************************************************
    121121//******************************************************************************
    122 mem_map_t *virt_to_page(int x)
    123 {
    124     static mem_map_t map = {0};
    125     return ↦
     122pgprot_t __pgprot(int x)
     123{
     124        unsigned long long cast_x;
     125        pgprot_t pg;
     126        cast_x = (unsigned long long) (x);
     127        pg.pgprot = cast_x;
     128        return (pg);
    126129}
    127130//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.