xref: /freebsd/sys/compat/linuxkpi/common/include/media/cec.h (revision 240c614d48cb0484bfe7876decdf6bbdcc99ba73)
1 /*
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2025-2026 The FreeBSD Foundation
5  * Copyright (c) 2025-2026 Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
6  *
7  * This software was developed by Jean-Sébastien Pédron under sponsorship
8  * from the FreeBSD Foundation.
9  */
10 
11 #ifndef _LINUXKPI_MEDIA_CEC_H_
12 #define	_LINUXKPI_MEDIA_CEC_H_
13 
14 #include <linux/poll.h>
15 #include <linux/fs.h>
16 #include <linux/debugfs.h>
17 #include <linux/device.h>
18 #include <linux/cdev.h>
19 #include <linux/kthread.h>
20 #include <linux/timer.h>
21 #include <linux/cec-funcs.h>
22 
23 #endif
24