repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
irqchip: Fix dependencies for archs w/o HAS_IOMEM
[linux/fpc-iii.git]
/
arch
/
sparc
/
include
/
asm
/
page.h
blob
1be2fdec626896715402512ca00e8ae1f84085c3
1
#ifndef ___ASM_SPARC_PAGE_H
2
#define ___ASM_SPARC_PAGE_H
3
4
#define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
5
6
#if defined(__sparc__) && defined(__arch64__)
7
#include <asm/page_64.h>
8
#else
9
#include <asm/page_32.h>
10
#endif
11
#endif