Lines Matching refs:name
201 #define DEBUGFS_READONLY_FILE_FN(name, fmt, value...) \ argument
202 static ssize_t name## _read(struct file *file, char __user *userbuf, \
211 #define DEBUGFS_READONLY_FILE_OPS(name) \ argument
212 static const struct file_operations name## _ops = { \
213 .read = name## _read, \
218 #define DEBUGFS_READONLY_FILE(name, fmt, value...) \ argument
219 DEBUGFS_READONLY_FILE_FN(name, fmt, value) \
220 DEBUGFS_READONLY_FILE_OPS(name)
222 #define DEBUGFS_ADD(name) \ argument
223 debugfs_create_file(#name, 0400, phyd, local, &name## _ops);
225 #define DEBUGFS_ADD_MODE(name, mode) \ argument
226 debugfs_create_file(#name, mode, phyd, local, &name## _ops);
238 local->rate_ctrl ? local->rate_ctrl->ops->name : "hw/driver");
367 #define DEBUGFS_DEVSTATS_FILE(name) \ argument
368 static int print_devstats_##name(struct ieee80211_low_level_stats *stats,\
371 return scnprintf(buf, buflen, "%u\n", stats->name); \
373 static ssize_t stats_ ##name## _read(struct file *file, \
381 print_devstats_##name); \
384 static const struct file_operations stats_ ##name## _ops = { \
385 .read = stats_ ##name## _read, \
390 #define DEBUGFS_STATS_ADD(name, field) \ argument
391 debugfs_create_u32(#name, 0400, statsd, (u32 *) &field);
392 #define DEBUGFS_DEVSTATS_ADD(name) \ argument
393 debugfs_create_file(#name, 0400, statsd, local, &stats_ ##name## _ops);