nouveau: Minor clean up of winsys

This commit is contained in:
Jakob Bornecrantz 2010-04-20 23:31:07 +01:00
parent c408942c9c
commit 1d98ce511d
1 changed files with 3 additions and 2 deletions

View File

@ -146,14 +146,15 @@ nouveau_drm_create_screen(struct drm_api *api, int fd,
return nvws->pscreen;
}
struct drm_api drm_api_hooks = {
static struct drm_api nouveau_drm_api_hooks = {
.name = "nouveau",
.driver_name = "nouveau",
.create_screen = nouveau_drm_create_screen,
.destroy = NULL;
};
struct drm_api *
drm_api_create() {
return &drm_api_hooks;
return &nouveau_drm_api_hooks;
}