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.

Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-aarch64

Pull ARM64 fixes from Catalin Marinas:
- Missing include in asm/compat.h.
- Kconfig updates.

* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-aarch64:
arm64: Always select ARM_AMBA and GENERIC_GPIO
arm64: Keep the ARM64 Kconfig selects sorted
arm64: Include linux/ptrace.h in asm/compat.h

+6 -1
+5 -1
arch/arm64/Kconfig
··· 2 2 def_bool y 3 3 select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE 4 4 select ARCH_WANT_COMPAT_IPC_PARSE_VERSION 5 + select ARM_AMBA 6 + select CLONE_BACKWARDS 5 7 select COMMON_CLK 6 8 select GENERIC_CLOCKEVENTS 7 9 select GENERIC_HARDIRQS_NO_DEPRECATED ··· 33 31 select RTC_LIB 34 32 select SPARSE_IRQ 35 33 select SYSCTL_EXCEPTION_TRACE 36 - select CLONE_BACKWARDS 37 34 help 38 35 ARM 64-bit (AArch64) Linux support. 39 36 ··· 90 89 91 90 config IOMMU_HELPER 92 91 def_bool SWIOTLB 92 + 93 + config GENERIC_GPIO 94 + def_bool y 93 95 94 96 source "init/Kconfig" 95 97
+1
arch/arm64/include/asm/compat.h
··· 23 23 */ 24 24 #include <linux/types.h> 25 25 #include <linux/sched.h> 26 + #include <linux/ptrace.h> 26 27 27 28 #define COMPAT_USER_HZ 100 28 29 #define COMPAT_UTS_MACHINE "armv8l\0\0"