diff options
author | Takashi Iwai <tiwai@suse.de> | 2025-06-26 07:59:33 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2025-06-26 07:59:33 +0200 |
commit | 346bd8a977fc559ef41099f727cdb0805f66bd10 (patch) | |
tree | ea2304801566b4a498957a5be469be8e0cc51686 /arch/um/include/asm/pgtable.h | |
parent | 5e9571750c4e53d16727a04159455c693d7b31cb (diff) | |
parent | 6c038b58a2dc5a008c7e7a1297f5aaa4deaaaa7e (diff) |
Merge tag 'asoc-fix-v6.16-rc3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.16
A small collection of fixes, the main one being a fix for resume from
hibernation on AMD systems, plus a few new quirk entries for AMD
systems.
Diffstat (limited to 'arch/um/include/asm/pgtable.h')
-rw-r--r-- | arch/um/include/asm/pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/include/asm/pgtable.h b/arch/um/include/asm/pgtable.h index ca2a519d53ab..24fdea6f88c3 100644 --- a/arch/um/include/asm/pgtable.h +++ b/arch/um/include/asm/pgtable.h @@ -314,7 +314,7 @@ extern pte_t *virt_to_pte(struct mm_struct *mm, unsigned long addr); ((swp_entry_t) { pte_val(pte_mkuptodate(pte)) }) #define __swp_entry_to_pte(x) ((pte_t) { (x).val }) -static inline int pte_swp_exclusive(pte_t pte) +static inline bool pte_swp_exclusive(pte_t pte) { return pte_get_bits(pte, _PAGE_SWP_EXCLUSIVE); } |