Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 09d97da660ff77df20984496aa0abcd6b88819f2 13 lines 248 B view raw
1#ifndef PLATFORM_DATA_X86_APPLE_H 2#define PLATFORM_DATA_X86_APPLE_H 3 4#ifdef CONFIG_X86 5/** 6 * x86_apple_machine - whether the machine is an x86 Apple Macintosh 7 */ 8extern bool x86_apple_machine; 9#else 10#define x86_apple_machine false 11#endif 12 13#endif