diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-05-18 17:21:26 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-05-19 15:02:24 +1000 |
commit | 1dc461f0b03fab309eb9214df1c9b586aeaf3b22 (patch) | |
tree | a56220353855a2339367a0b3acf011d9dede33fd /arch/powerpc/kernel/vio.c | |
parent | 4c76e0bcdeac27b45d55955f073a97ff8452a42f (diff) | |
download | linux-stable-1dc461f0b03fab309eb9214df1c9b586aeaf3b22.tar.gz linux-stable-1dc461f0b03fab309eb9214df1c9b586aeaf3b22.tar.bz2 linux-stable-1dc461f0b03fab309eb9214df1c9b586aeaf3b22.zip |
[PATCH] powerpc: the iSeries vio lan driver changed device type
So the IOMMU table building code needs to match.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/vio.c')
-rw-r--r-- | arch/powerpc/kernel/vio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 2cda65b8171b..fe92727aca30 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c @@ -71,7 +71,7 @@ static struct iommu_table *vio_build_iommu_table(struct vio_dev *dev) { #ifdef CONFIG_PPC_ISERIES if (firmware_has_feature(FW_FEATURE_ISERIES)) { - if (strcmp(dev->type, "vlan") == 0) + if (strcmp(dev->type, "network") == 0) return &veth_iommu_table; return &vio_iommu_table; } else |