提交 51a569f7 编写于 作者: E Emilio G. Cota 提交者: Greg Kroah-Hartman

Staging: vme: fix {master,slave}_get check bug

It's checking the wrong functions; fix it.
Signed-off-by: NEmilio G. Cota <cota@braap.org>
Acked-by: NMartyn Welch <martyn.welch@gefanuc.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 a37b0dad
......@@ -338,7 +338,7 @@ int vme_slave_get (struct vme_resource *resource, int *enabled,
image = list_entry(resource->entry, struct vme_slave_resource, list);
if (bridge->slave_set == NULL) {
if (bridge->slave_get == NULL) {
printk("vme_slave_get not supported\n");
return -EINVAL;
}
......@@ -499,7 +499,7 @@ int vme_master_get (struct vme_resource *resource, int *enabled,
image = list_entry(resource->entry, struct vme_master_resource, list);
if (bridge->master_set == NULL) {
if (bridge->master_get == NULL) {
printk("vme_master_set not supported\n");
return -EINVAL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册