[PATCH] [POWERPC] iSeries: we need vio_enable_interrupts
Stephen Rothwell
sfr at canb.auug.org.au
Mon Jul 23 11:55:32 EST 2007
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 at canb.auug.org.au>
---
include/asm-powerpc/vio.h | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Paul, this is a fix for a 2.6.23 regression. I should do a better fix
for 2.6.24. Built for iseries_defconfig, ppc64_defconfig and
allmodconfig.
--
Cheers,
Stephen Rothwell sfr at canb.auug.org.au
diff --git a/include/asm-powerpc/vio.h b/include/asm-powerpc/vio.h
index 0117b54..3a0975e 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)
--
1.5.2.3
More information about the Linuxppc-dev
mailing list