~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/linux/debugfs.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
        return ERR_PTR(-ENODEV);
207
207
}
208
208
 
 
209
static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode,
 
210
                                     struct dentry *parent, atomic_t *value)
 
211
{
 
212
        return ERR_PTR(-ENODEV);
 
213
}
 
214
 
209
215
static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode,
210
216
                                                 struct dentry *parent,
211
217
                                                 u32 *value)
227
233
        return ERR_PTR(-ENODEV);
228
234
}
229
235
 
 
236
static inline int debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
 
237
                         int nregs, void __iomem *base, char *prefix)
 
238
{
 
239
        return 0;
 
240
}
 
241
 
230
242
static inline bool debugfs_initialized(void)
231
243
{
232
244
        return false;