diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-05 22:31:13 +0300 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-06 23:31:51 +0300 |
commit | deb79cfb365c96ff960570d1bcf2c205424b6195 (patch) | |
tree | d18b2806eba47ae6d1bc6f5d3054210d7a4e5743 /arch/x86/include/asm/pgtable-3level.h | |
parent | cc290ca38cc4c78b0d6175633232f05b8d8732ab (diff) | |
download | linux-deb79cfb365c96ff960570d1bcf2c205424b6195.tar.xz |
x86: unify pud_none
Impact: cleanup
Unify and demacro pud_none.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch/x86/include/asm/pgtable-3level.h')
-rw-r--r-- | arch/x86/include/asm/pgtable-3level.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/include/asm/pgtable-3level.h b/arch/x86/include/asm/pgtable-3level.h index b92524eec202..3f13cdf61156 100644 --- a/arch/x86/include/asm/pgtable-3level.h +++ b/arch/x86/include/asm/pgtable-3level.h @@ -18,11 +18,6 @@ printk("%s:%d: bad pgd %p(%016Lx).\n", \ __FILE__, __LINE__, &(e), pgd_val(e)) -static inline int pud_none(pud_t pud) -{ - return pud_val(pud) == 0; -} - /* Rules for using set_pte: the pte being assigned *must* be * either not present or in a state where the hardware will * not attempt to update the pte. In places where this is |