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(file->f_op, struct b43_debugfs_fops, fops); in b43_debugfs_read()
528 if (!dfops->read) { in b43_debugfs_read()
532 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
541 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
570 struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
588 dfops = container_of(file->f_op, struct b43_debugfs_fops, fops); in b43_debugfs_write()
589 if (!dfops->write) { in b43_debugfs_write()
603 err = dfops->write(dev, buf, count); in b43_debugfs_write()