]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] M68k inline
authorGeert Uytterhoeven <geert@linux-m68k.org>
Sat, 26 Jul 2003 02:15:55 +0000 (19:15 -0700)
committerJens Axboe <axboe@suse.de>
Sat, 26 Jul 2003 02:15:55 +0000 (19:15 -0700)
M68k: Kill erroneous `inline' (found by gcc 3.2)

include/asm-m68k/motorola_pgtable.h

index 73ddf2fcbb81d04b33f1e4c337170622325441c7..a92d63841e2a20a97c18e7ae9c2fd66a73582223 100644 (file)
@@ -263,7 +263,7 @@ static inline unsigned long pte_to_pgoff(pte_t pte)
        return ((pte.pte >> 12) << 7) + ((pte.pte >> 2) & 0x1ff);
 }
 
-static inline pte_t pgoff_to_pte(inline unsigned off)
+static inline pte_t pgoff_to_pte(unsigned off)
 {
        pte_t pte = { ((off >> 7) << 12) + ((off & 0x1ff) << 2) + _PAGE_FILE };
        return pte;