Skip to content

Commit 118253a

Browse files
committed
Merge tag 'fixes-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull h8300 and unicore32 architecture fixes from Guenter Roeck: "Two patches to fix h8300 and unicore32 builds. unicore32 builds have been broken since v4.6. The fix has been available in -next since March of this year. h8300 builds have been broken since the last commit window. The fix has been available in -next since June of this year" * tag 'fixes-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: h8300: Add missing include file to asm/io.h unicore32: mm: Add missing parameter to arch_vma_access_permitted
2 parents 120c547 + 2b05980 commit 118253a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

arch/h8300/include/asm/io.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#ifdef __KERNEL__
55

6+
#include <linux/types.h>
7+
68
/* H8/300 internal I/O functions */
79

810
#define __raw_readb __raw_readb

arch/unicore32/include/asm/mmu_context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ static inline void arch_bprm_mm_init(struct mm_struct *mm,
9898
}
9999

100100
static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
101-
bool write, bool foreign)
101+
bool write, bool execute, bool foreign)
102102
{
103103
/* by default, allow everything */
104104
return true;

0 commit comments

Comments
 (0)