Lines Matching refs:dfops
53 const struct b43_debugfs_fops *dfops) in fops_to_dfs_file() argument
58 p += dfops->file_struct_offset; in fops_to_dfs_file()
507 struct b43_debugfs_fops *dfops; in b43_debugfs_read() local
527 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_read()
529 if (!dfops->read) { in b43_debugfs_read()
533 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
542 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
571 struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
589 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_write()
591 if (!dfops->write) { in b43_debugfs_write()
605 err = dfops->write(dev, buf, count); in b43_debugfs_write()