mirror of https://gitee.com/openkylin/linux.git
drm/gf100-/gr: return non-fatal error code when fw not present
This allows the module to load without acceleration. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
c49c0b4411
commit
c6f37e0ce6
|
@ -1557,7 +1557,7 @@ nvc0_graph_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
|
||||||
nvc0_graph_ctor_fw(priv, "fuc409d", &priv->fuc409d) ||
|
nvc0_graph_ctor_fw(priv, "fuc409d", &priv->fuc409d) ||
|
||||||
nvc0_graph_ctor_fw(priv, "fuc41ac", &priv->fuc41ac) ||
|
nvc0_graph_ctor_fw(priv, "fuc41ac", &priv->fuc41ac) ||
|
||||||
nvc0_graph_ctor_fw(priv, "fuc41ad", &priv->fuc41ad))
|
nvc0_graph_ctor_fw(priv, "fuc41ad", &priv->fuc41ad))
|
||||||
return -EINVAL;
|
return -ENODEV;
|
||||||
priv->firmware = true;
|
priv->firmware = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue