xref: /dflybsd-src/sys/dev/drm/include/linux/irq.h (revision 111dab5b72b72339c1e73c46f14879e6fc06331d)
11dedbd3bSFrançois Tigeot /*
21dedbd3bSFrançois Tigeot  * Copyright (c) 2019 François Tigeot <ftigeot@wolfpond.org>
31dedbd3bSFrançois Tigeot  * All rights reserved.
41dedbd3bSFrançois Tigeot  *
51dedbd3bSFrançois Tigeot  * Redistribution and use in source and binary forms, with or without
61dedbd3bSFrançois Tigeot  * modification, are permitted provided that the following conditions
71dedbd3bSFrançois Tigeot  * are met:
81dedbd3bSFrançois Tigeot  * 1. Redistributions of source code must retain the above copyright
91dedbd3bSFrançois Tigeot  *    notice unmodified, this list of conditions, and the following
101dedbd3bSFrançois Tigeot  *    disclaimer.
111dedbd3bSFrançois Tigeot  * 2. Redistributions in binary form must reproduce the above copyright
121dedbd3bSFrançois Tigeot  *    notice, this list of conditions and the following disclaimer in the
131dedbd3bSFrançois Tigeot  *    documentation and/or other materials provided with the distribution.
141dedbd3bSFrançois Tigeot  *
151dedbd3bSFrançois Tigeot  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
161dedbd3bSFrançois Tigeot  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
171dedbd3bSFrançois Tigeot  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
181dedbd3bSFrançois Tigeot  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
191dedbd3bSFrançois Tigeot  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
201dedbd3bSFrançois Tigeot  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
211dedbd3bSFrançois Tigeot  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
221dedbd3bSFrançois Tigeot  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
231dedbd3bSFrançois Tigeot  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
241dedbd3bSFrançois Tigeot  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
251dedbd3bSFrançois Tigeot  */
261dedbd3bSFrançois Tigeot 
271dedbd3bSFrançois Tigeot #ifndef _LINUX_REBOOT_H_
281dedbd3bSFrançois Tigeot #define _LINUX_REBOOT_H_
291dedbd3bSFrançois Tigeot 
30*111dab5bSFrançois Tigeot #include <linux/smp.h>
311dedbd3bSFrançois Tigeot #include <linux/linkage.h>
321dedbd3bSFrançois Tigeot #include <linux/cache.h>
331dedbd3bSFrançois Tigeot #include <linux/spinlock.h>
341dedbd3bSFrançois Tigeot #include <linux/cpumask.h>
351dedbd3bSFrançois Tigeot #include <linux/gfp.h>
361dedbd3bSFrançois Tigeot #include <linux/irqreturn.h>
371dedbd3bSFrançois Tigeot #include <linux/errno.h>
381dedbd3bSFrançois Tigeot #include <linux/wait.h>
391dedbd3bSFrançois Tigeot #include <linux/io.h>
401dedbd3bSFrançois Tigeot 
411dedbd3bSFrançois Tigeot #endif	/* _LINUX_REBOOT_H_ */
42