From: Hauke Mehrtens Date: Sat, 18 Jan 2014 23:04:45 +0000 (+0100) Subject: backports: add linux/irqdomain.h X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=72f5d656e0d0877ccbee0b4f7507a0df72b9cb5d;p=openwrt%2Fstaging%2Fblogic.git backports: add linux/irqdomain.h ssb uses this header file, but does not use any of the functions in there in the default config, because that is only used when SSB_DRIVER_GPIO and SSB_EMBEDDED are activated. Signed-off-by: Hauke Mehrtens --- diff --git a/backport/backport-include/linux/irqdomain.h b/backport/backport-include/linux/irqdomain.h new file mode 100644 index 000000000000..a889a2906a7f --- /dev/null +++ b/backport/backport-include/linux/irqdomain.h @@ -0,0 +1,9 @@ +#ifndef __BACKPORT_LINUX_IRQDOMAIN_H +#define __BACKPORT_LINUX_IRQDOMAIN_H +#include + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0) +#include_next +#endif + +#endif /* __BACKPORT_LINUX_IRQDOMAIN_H */