summaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/vio.h
diff options
context:
space:
mode:
authorStephen Rothwell2007-07-23 03:55:32 +0200
committerPaul Mackerras2007-07-26 08:12:17 +0200
commit56a4c6e31a25a218c066d8da27558a86310bbfd7 (patch)
treeaf89192fcaf06c6c455ef10a5eb49a64a1788755 /include/asm-powerpc/vio.h
parent[POWERPC] Fix RTC and device tree on linkstation machines (diff)
downloadkernel-qcow2-linux-56a4c6e31a25a218c066d8da27558a86310bbfd7.tar.gz
kernel-qcow2-linux-56a4c6e31a25a218c066d8da27558a86310bbfd7.tar.xz
kernel-qcow2-linux-56a4c6e31a25a218c066d8da27558a86310bbfd7.zip
[POWERPC] iSeries: We need vio_enable_interrupts
Commit 3d0e91f7ace12499c4b00088e9a6b1361e1bb0ca introduced a requirement for vio_enable_interrupts which iSeires has never needed. So create a dummy one. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/vio.h')
-rw-r--r--include/asm-powerpc/vio.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-powerpc/vio.h b/include/asm-powerpc/vio.h
index 0117b544ecbc..3a0975e2adad 100644
--- a/include/asm-powerpc/vio.h
+++ b/include/asm-powerpc/vio.h
@@ -80,6 +80,11 @@ extern const void *vio_get_attribute(struct vio_dev *vdev, char *which,
extern struct vio_dev *vio_find_node(struct device_node *vnode);
extern int vio_enable_interrupts(struct vio_dev *dev);
extern int vio_disable_interrupts(struct vio_dev *dev);
+#else
+static inline int vio_enable_interrupts(struct vio_dev *dev)
+{
+ return 0;
+}
#endif
static inline struct vio_driver *to_vio_driver(struct device_driver *drv)