Lines Matching refs:dfops
39 const struct b43_debugfs_fops *dfops) in fops_to_dfs_file() argument
44 p += dfops->file_struct_offset; in fops_to_dfs_file()
493 const struct b43_debugfs_fops *dfops; in b43_debugfs_read() local
513 dfops = debugfs_get_aux(file); in b43_debugfs_read()
514 if (!dfops->read) { in b43_debugfs_read()
518 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
527 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
556 const struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
574 dfops = debugfs_get_aux(file); in b43_debugfs_write()
575 if (!dfops->write) { in b43_debugfs_write()
589 err = dfops->write(dev, buf, count); in b43_debugfs_write()