Linux Audio

Check our new training course

Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/* This handles the memory map.. */
 3
 4#if defined(CONFIG_RAMBASE)
 5#define PAGE_OFFSET_RAW		CONFIG_RAMBASE
 6#elif defined(CONFIG_SUN3)
 
 7#define PAGE_OFFSET_RAW		0x0E000000
 
 8#else
 9#define PAGE_OFFSET_RAW		0x00000000
10#endif
v3.1
 
 1/* This handles the memory map.. */
 2
 3#ifdef CONFIG_MMU
 4#ifndef CONFIG_SUN3
 5#define PAGE_OFFSET_RAW		0x00000000
 6#else
 7#define PAGE_OFFSET_RAW		0x0E000000
 8#endif
 9#else
10#define	PAGE_OFFSET_RAW		CONFIG_RAMBASE
11#endif