aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2013-02-12 11:29:51 +0100
committerOlaf Hering <olaf@aepfle.de>2013-02-12 11:29:51 +0100
commit3607f64fc6753186209d6f35ef8f49c995b581b5 (patch)
treedf4ad08c37a4e2b96f132bc01bc1ab78dfffd3a9 /unmodified_drivers
parent300ef0cb4fde0e4e753f2ad3f2f48c2bbee187df (diff)
downloadxen-3607f64fc6753186209d6f35ef8f49c995b581b5.tar.gz
xen-3607f64fc6753186209d6f35ef8f49c995b581b5.tar.bz2
xen-3607f64fc6753186209d6f35ef8f49c995b581b5.zip
unmodified_drivers: __devinit was removed in linux-3.8
Signed-off-by: Olaf Hering <olaf@aepfle.de> Merge with __init handling. Signed-off-by: Jan Beulich <jbeulich@suse.com> Committed-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'unmodified_drivers')
-rw-r--r--unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
index 595d012293..57afc726c7 100644
--- a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
+++ b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
@@ -13,10 +13,19 @@
#define DEFINE_SPINLOCK(x) spinlock_t x = SPIN_LOCK_UNLOCKED
#endif
-#if defined(_LINUX_INIT_H) && !defined(__init)
+#ifdef _LINUX_INIT_H
+
+#ifndef __init
#define __init
#endif
+#ifndef __devinit
+#define __devinit
+#define __devinitdata
+#endif
+
+#endif /* _LINUX_INIT_H */
+
#if defined(__LINUX_CACHE_H) && !defined(__read_mostly)
#define __read_mostly
#endif