ae2587e412
Formatting changes in the files which have been changed in the course of removing CHOOSE_MODE. These include: copyright updates header file trimming style fixes adding severity to printks These changes should be entirely non-functional. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
17 lines
286 B
C
17 lines
286 B
C
/*
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __ARCH_UM_MMU_H
|
|
#define __ARCH_UM_MMU_H
|
|
|
|
#include "uml-config.h"
|
|
#include "mmu-skas.h"
|
|
|
|
typedef union mm_context {
|
|
struct mmu_context_skas skas;
|
|
} mm_context_t;
|
|
|
|
#endif
|