diff options
Diffstat (limited to 'arch/powerpc/kernel/vio.c')
-rw-r--r-- | arch/powerpc/kernel/vio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 9b46eed5e637..19529297a2dc 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -47,7 +47,8 @@ static const struct vio_device_id *vio_match_device( | |||
47 | const struct vio_device_id *ids, const struct vio_dev *dev) | 47 | const struct vio_device_id *ids, const struct vio_dev *dev) |
48 | { | 48 | { |
49 | while (ids->type[0] != '\0') { | 49 | while (ids->type[0] != '\0') { |
50 | if (vio_bus_ops.match(ids, dev)) | 50 | if ((strncmp(dev->type, ids->type, strlen(ids->type)) == 0) && |
51 | device_is_compatible(dev->dev.platform_data, ids->compat)) | ||
51 | return ids; | 52 | return ids; |
52 | ids++; | 53 | ids++; |
53 | } | 54 | } |