Searched refs:dbgfs_root (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/drivers/cpufreq/ |
D | s3c24xx-cpufreq-debugfs.c | 24 static struct dentry *dbgfs_root; variable 179 dbgfs_root = debugfs_create_dir("s3c-cpufreq", NULL); in s3c_freq_debugfs_init() 180 if (IS_ERR(dbgfs_root)) { in s3c_freq_debugfs_init() 182 return PTR_ERR(dbgfs_root); in s3c_freq_debugfs_init() 185 dbgfs_file_io = debugfs_create_file("io-timing", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init() 188 dbgfs_file_info = debugfs_create_file("info", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init() 191 dbgfs_file_board = debugfs_create_file("board", S_IRUGO, dbgfs_root, in s3c_freq_debugfs_init()
|
/linux-4.4.14/arch/arm/plat-pxa/ |
D | dma.c | 50 static struct dentry *dbgfs_root, *dbgfs_state, **dbgfs_chan; variable 231 dbgfs_root = debugfs_create_dir(DMA_DEBUG_NAME, NULL); in pxa_dma_init_debugfs() 232 if (IS_ERR(dbgfs_root) || !dbgfs_root) in pxa_dma_init_debugfs() 235 dbgfs_state = debugfs_create_file("state", 0400, dbgfs_root, NULL, in pxa_dma_init_debugfs() 245 chandir = debugfs_create_dir("channels", dbgfs_root); in pxa_dma_init_debugfs() 261 debugfs_remove_recursive(dbgfs_root); in pxa_dma_init_debugfs() 268 debugfs_remove_recursive(dbgfs_root); in pxa_dma_cleanup_debugfs()
|
/linux-4.4.14/drivers/net/caif/ |
D | caif_spi.c | 110 static struct dentry *dbgfs_root; variable 114 dbgfs_root = debugfs_create_dir(cfspi_spi_driver.driver.name, NULL); in driver_debugfs_create() 119 debugfs_remove(dbgfs_root); in driver_debugfs_remove() 252 cfspi->dbgfs_dir = debugfs_create_dir(cfspi->pdev->name, dbgfs_root); in dev_debugfs_add()
|
/linux-4.4.14/drivers/dma/ |
D | pxa_dma.c | 130 struct dentry *dbgfs_root; member 368 pdev->dbgfs_root = debugfs_create_dir(dev_name(pdev->slave.dev), NULL); in pxad_init_debugfs() 369 if (IS_ERR(pdev->dbgfs_root) || !pdev->dbgfs_root) in pxad_init_debugfs() 372 pdev->dbgfs_state = debugfs_create_file("state", 0400, pdev->dbgfs_root, in pxad_init_debugfs() 383 chandir = debugfs_create_dir("channels", pdev->dbgfs_root); in pxad_init_debugfs() 399 debugfs_remove_recursive(pdev->dbgfs_root); in pxad_init_debugfs() 406 debugfs_remove_recursive(pdev->dbgfs_root); in pxad_cleanup_debugfs()
|
/linux-4.4.14/drivers/usb/musb/ |
D | musb_dsps.c | 151 struct dentry *dbgfs_root; member 406 glue->dbgfs_root = root; in dsps_musb_dbg_init() 500 debugfs_remove_recursive(glue->dbgfs_root); in dsps_musb_exit()
|