[MIPS] Always pass -msoft-float.
[linux-2.6/openmoko-kernel/knife-kernel.git] / arch / um / include / skas / mmu-skas.h
blobd8869a6ef1b43b43b2ae006be0f1126cd8ed628f
1 /*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #ifndef __SKAS_MMU_H
7 #define __SKAS_MMU_H
9 #include "linux/config.h"
10 #include "mm_id.h"
11 #include "asm/ldt.h"
13 struct mmu_context_skas {
14 struct mm_id id;
15 unsigned long last_page_table;
16 #ifdef CONFIG_3_LEVEL_PGTABLES
17 unsigned long last_pmd;
18 #endif
19 uml_ldt_t ldt;
22 extern void switch_mm_skas(struct mm_id * mm_idp);
24 #endif