Re: [PATCH] debugfs: Add debugfs_create_ulong()

2015-10-09 Thread Stephen Boyd
On 10/09, Viresh Kumar wrote: > @@ -87,6 +89,8 @@ struct dentry *debugfs_create_x32(const char *name, umode_t > mode, > struct dentry *parent, u32 *value); > struct dentry *debugfs_create_x64(const char *name, umode_t mode, > struct

[PATCH] debugfs: Add debugfs_create_ulong()

2015-10-09 Thread Viresh Kumar
Add debugfs_create_ulong() for the users of type 'unsigned long'. These will be 32 bits long on a 32 bit machine and 64 bits long on a 64 bit machine and so can't use the traditional debugfs_create_u64() or debugfs_create_u32() APIs. Signed-off-by: Viresh Kumar --- Hi Greg, I thought there were