Lines Matching refs:dbg
214 struct mbxfb_debugfs_data *dbg; in mbxfb_debugfs_init() local
216 dbg = kzalloc(sizeof(struct mbxfb_debugfs_data), GFP_KERNEL); in mbxfb_debugfs_init()
217 mfbi->debugfs_data = dbg; in mbxfb_debugfs_init()
219 dbg->dir = debugfs_create_dir("mbxfb", NULL); in mbxfb_debugfs_init()
220 dbg->sysconf = debugfs_create_file("sysconf", 0444, dbg->dir, in mbxfb_debugfs_init()
222 dbg->clock = debugfs_create_file("clock", 0444, dbg->dir, in mbxfb_debugfs_init()
224 dbg->display = debugfs_create_file("display", 0444, dbg->dir, in mbxfb_debugfs_init()
226 dbg->gsctl = debugfs_create_file("gsctl", 0444, dbg->dir, in mbxfb_debugfs_init()
228 dbg->sdram = debugfs_create_file("sdram", 0444, dbg->dir, in mbxfb_debugfs_init()
230 dbg->misc = debugfs_create_file("misc", 0444, dbg->dir, in mbxfb_debugfs_init()
237 struct mbxfb_debugfs_data *dbg = mfbi->debugfs_data; in mbxfb_debugfs_remove() local
239 debugfs_remove(dbg->misc); in mbxfb_debugfs_remove()
240 debugfs_remove(dbg->sdram); in mbxfb_debugfs_remove()
241 debugfs_remove(dbg->gsctl); in mbxfb_debugfs_remove()
242 debugfs_remove(dbg->display); in mbxfb_debugfs_remove()
243 debugfs_remove(dbg->clock); in mbxfb_debugfs_remove()
244 debugfs_remove(dbg->sysconf); in mbxfb_debugfs_remove()
245 debugfs_remove(dbg->dir); in mbxfb_debugfs_remove()