Lines Matching refs:dbg
219 struct mbxfb_debugfs_data *dbg; in mbxfb_debugfs_init() local
221 dbg = kzalloc(sizeof(struct mbxfb_debugfs_data), GFP_KERNEL); in mbxfb_debugfs_init()
222 mfbi->debugfs_data = dbg; in mbxfb_debugfs_init()
224 dbg->dir = debugfs_create_dir("mbxfb", NULL); in mbxfb_debugfs_init()
225 dbg->sysconf = debugfs_create_file("sysconf", 0444, dbg->dir, in mbxfb_debugfs_init()
227 dbg->clock = debugfs_create_file("clock", 0444, dbg->dir, in mbxfb_debugfs_init()
229 dbg->display = debugfs_create_file("display", 0444, dbg->dir, in mbxfb_debugfs_init()
231 dbg->gsctl = debugfs_create_file("gsctl", 0444, dbg->dir, in mbxfb_debugfs_init()
233 dbg->sdram = debugfs_create_file("sdram", 0444, dbg->dir, in mbxfb_debugfs_init()
235 dbg->misc = debugfs_create_file("misc", 0444, dbg->dir, in mbxfb_debugfs_init()
242 struct mbxfb_debugfs_data *dbg = mfbi->debugfs_data; in mbxfb_debugfs_remove() local
244 debugfs_remove(dbg->misc); in mbxfb_debugfs_remove()
245 debugfs_remove(dbg->sdram); in mbxfb_debugfs_remove()
246 debugfs_remove(dbg->gsctl); in mbxfb_debugfs_remove()
247 debugfs_remove(dbg->display); in mbxfb_debugfs_remove()
248 debugfs_remove(dbg->clock); in mbxfb_debugfs_remove()
249 debugfs_remove(dbg->sysconf); in mbxfb_debugfs_remove()
250 debugfs_remove(dbg->dir); in mbxfb_debugfs_remove()