mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 18:41:23 +00:00
17 lines
346 B
C
17 lines
346 B
C
|
/*
|
||
|
* memory & I/O static mapping definitions for CSR SiRFprimaII
|
||
|
*
|
||
|
* Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
|
||
|
*
|
||
|
* Licensed under GPLv2 or later.
|
||
|
*/
|
||
|
|
||
|
#ifndef __MACH_PRIMA2_MAP_H__
|
||
|
#define __MACH_PRIMA2_MAP_H__
|
||
|
|
||
|
#include <mach/vmalloc.h>
|
||
|
|
||
|
#define SIRFSOC_VA(x) (VMALLOC_END + ((x) & 0x00FFF000))
|
||
|
|
||
|
#endif
|