Lines Matching refs:dfops
40 const struct b43_debugfs_fops *dfops) in fops_to_dfs_file() argument
45 p += dfops->file_struct_offset; in fops_to_dfs_file()
494 struct b43_debugfs_fops *dfops; in b43_debugfs_read() local
514 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_read()
516 if (!dfops->read) { in b43_debugfs_read()
520 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
529 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
558 struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
576 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_write()
578 if (!dfops->write) { in b43_debugfs_write()
592 err = dfops->write(dev, buf, count); in b43_debugfs_write()