Lines Matching refs:dfops
43 const struct b43legacy_debugfs_fops *dfops) in fops_to_dfs_file() argument
48 p += dfops->file_struct_offset; in fops_to_dfs_file()
191 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_read() local
211 dfops = container_of(debugfs_real_fops(file), in b43legacy_debugfs_read()
213 if (!dfops->read) { in b43legacy_debugfs_read()
217 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
226 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
228 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
231 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
260 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
278 dfops = container_of(debugfs_real_fops(file), in b43legacy_debugfs_write()
280 if (!dfops->write) { in b43legacy_debugfs_write()
294 if (dfops->take_irqlock) { in b43legacy_debugfs_write()
296 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()
299 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()