Lines Matching refs:this
74 struct cfcnfg *this; in cfcnfg_create() local
80 this = kzalloc(sizeof(struct cfcnfg), GFP_ATOMIC); in cfcnfg_create()
81 if (!this) in cfcnfg_create()
83 this->mux = cfmuxl_create(); in cfcnfg_create()
84 if (!this->mux) in cfcnfg_create()
86 this->ctrl = cfctrl_create(); in cfcnfg_create()
87 if (!this->ctrl) in cfcnfg_create()
90 resp = cfctrl_get_respfuncs(this->ctrl); in cfcnfg_create()
100 INIT_LIST_HEAD(&this->phys); in cfcnfg_create()
102 cfmuxl_set_uplayer(this->mux, this->ctrl, 0); in cfcnfg_create()
103 layer_set_dn(this->ctrl, this->mux); in cfcnfg_create()
104 layer_set_up(this->ctrl, this); in cfcnfg_create()
105 mutex_init(&this->lock); in cfcnfg_create()
107 return this; in cfcnfg_create()
111 kfree(this->mux); in cfcnfg_create()
112 kfree(this->ctrl); in cfcnfg_create()
113 kfree(this); in cfcnfg_create()