mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 16:43:08 +00:00
drm/etnaviv: remove generic GPU init failure reporting
The GPU init path now reports any errors which might occur more accurately than what is possible with the generic "something failed" message. Remove the generic reporting, so we don't log an error into dmesg anymore if any of the GPU cores are ignored. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
This commit is contained in:
parent
1409df043a
commit
c1c77b0e07
@ -91,10 +91,8 @@ static void load_gpu(struct drm_device *dev)
|
||||
int ret;
|
||||
|
||||
ret = etnaviv_gpu_init(g);
|
||||
if (ret) {
|
||||
dev_err(g->dev, "hw init failed: %d\n", ret);
|
||||
if (ret)
|
||||
priv->gpu[i] = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user