dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/include/asm-ppc64/sections.h

30 lines
427 B
C

#ifndef _PPC64_SECTIONS_H
#define _PPC64_SECTIONS_H
extern char _end[];
#include <asm-generic/sections.h>
#define __pmac
#define __pmacdata
#define __prep
#define __prepdata
#define __chrp
#define __chrpdata
#define __openfirmware
#define __openfirmwaredata
static inline int in_kernel_text(unsigned long addr)
{
if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
return 1;
return 0;
}
#endif