[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>
This commit is contained in:
parent
da68e0814a
commit
48db7b7c50
1 changed files with 2 additions and 2 deletions
|
@ -103,9 +103,9 @@ static ssize_t devspec_show(struct device *dev,
|
|||
struct vio_dev *vdev = to_vio_dev(dev);
|
||||
const char *str = "none";
|
||||
|
||||
if (!strcmp(vdev->type, "network"))
|
||||
if (!strcmp(vdev->type, "vnet-port"))
|
||||
str = "vnet";
|
||||
else if (!strcmp(vdev->type, "block"))
|
||||
else if (!strcmp(vdev->type, "vdc-port"))
|
||||
str = "vdisk";
|
||||
|
||||
return sprintf(buf, "%s\n", str);
|
||||
|
|
Loading…
Reference in a new issue