diff options
author | Fabio Massimo Di Nitto <fabbione@ubuntu.com> | 2007-07-18 17:37:26 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-20 00:27:10 -0400 |
commit | 48db7b7c50cdb06c85f0ff01b5c19ac34903048b (patch) | |
tree | 0b1795ebb1597fc0a86e326e17b18a536de45c97 /arch/sparc64/kernel/vio.c | |
parent | da68e0814a83649f7063c33562f535b60396b566 (diff) |
[SPARC64]: Fix device type matching in VIO's devspec_show().
with the recent renames, we forgot to update the matches for
devspec. This is required to keep udev working and autoload modules.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/vio.c')
-rw-r--r-- | arch/sparc64/kernel/vio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/kernel/vio.c b/arch/sparc64/kernel/vio.c index 8d3cc4fdb557..7e65b5a28bff 100644 --- a/arch/sparc64/kernel/vio.c +++ b/arch/sparc64/kernel/vio.c | |||
@@ -103,9 +103,9 @@ static ssize_t devspec_show(struct device *dev, | |||
103 | struct vio_dev *vdev = to_vio_dev(dev); | 103 | struct vio_dev *vdev = to_vio_dev(dev); |
104 | const char *str = "none"; | 104 | const char *str = "none"; |
105 | 105 | ||
106 | if (!strcmp(vdev->type, "network")) | 106 | if (!strcmp(vdev->type, "vnet-port")) |
107 | str = "vnet"; | 107 | str = "vnet"; |
108 | else if (!strcmp(vdev->type, "block")) | 108 | else if (!strcmp(vdev->type, "vdc-port")) |
109 | str = "vdisk"; | 109 | str = "vdisk"; |
110 | 110 | ||
111 | return sprintf(buf, "%s\n", str); | 111 | return sprintf(buf, "%s\n", str); |