nvc0: do not break the universe on GK110+

I removed that return 0 by mistake. Ooops.

Fixes: 6e23fd4 ("nvc0: allow to use compute support on GM200")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Samuel Pitoiset 2016-04-14 21:47:15 +02:00
parent 6e23fd420d
commit bb4cdee9a4
1 changed files with 1 additions and 0 deletions

View File

@ -647,6 +647,7 @@ nvc0_screen_init_compute(struct nvc0_screen *screen)
case 0x120:
if (debug_get_bool_option("NVF0_COMPUTE", false))
return nve4_screen_compute_setup(screen, screen->base.pushbuf);
return 0;
default:
return -1;
}