search for: nouveau_devobj_ofunc

Displaying 1 result from an estimated 1 matches for "nouveau_devobj_ofunc".

Did you mean: nouveau_devobj_ofuncs
2012 Oct 07
1
[PATCH] drm/nouveau: remove >1 sclass support from nouveau_parent_create_
...d(u64 name); #endif diff --git a/drivers/gpu/drm/nouveau/core/subdev/device/base.c b/drivers/gpu/drm/nouveau/core/subdev/device/base.c index 2cec8a8..352a940 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/device/base.c +++ b/drivers/gpu/drm/nouveau/core/subdev/device/base.c @@ -409,9 +409,9 @@ nouveau_devobj_ofuncs = { * nouveau_device: engine functions *****************************************************************************/ struct nouveau_oclass -nouveau_device_sclass[] = { - { 0x0080, &nouveau_devobj_ofuncs }, - {} +nouveau_device_sclass = { + .handle = 0x0080, + .ofuncs = &nouveau_devob...