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

Merge tag 'linux-kselftest-fixes-5.15-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest

Pull Kselftest fixes from Shuah Khan:
"A fix to implicit declaration warns in drivers/dma-buf test"

* tag 'linux-kselftest-fixes-5.15-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
selftests: drivers/dma-buf: Fix implicit declaration warns

+4 -1
+4 -1
tools/testing/selftests/drivers/dma-buf/udmabuf.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 + #define _GNU_SOURCE 3 + #define __EXPORTED_HEADERS__ 4 + 2 5 #include <stdio.h> 3 6 #include <stdlib.h> 4 7 #include <unistd.h> 5 8 #include <string.h> 6 9 #include <errno.h> 7 - #include <linux/fcntl.h> 10 + #include <fcntl.h> 8 11 #include <malloc.h> 9 12 10 13 #include <sys/ioctl.h>