Home
last modified time | relevance | path

Searched refs:mgr_new (Results 1 – 1 of 1) sorted by relevance

/linux-2.6.39/drivers/staging/tidspbridge/pmgr/
Dcod.c207 struct cod_manager *mgr_new; in cod_create() local
217 mgr_new = kzalloc(sizeof(struct cod_manager), GFP_KERNEL); in cod_create()
218 if (mgr_new == NULL) in cod_create()
222 mgr_new->fxns = ldr_fxns; in cod_create()
225 mgr_new->fxns.init_fxn(); in cod_create()
244 mgr_new->attrs = zl_attrs; in cod_create()
246 status = mgr_new->fxns.create_fxn(&mgr_new->target, &zl_attrs); in cod_create()
249 cod_delete(mgr_new); in cod_create()
254 *mgr = mgr_new; in cod_create()