summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorMichal Ostrowski <mostrows@speakeasy.net>2005-04-18 21:57:34 -0700
committerGreg KH <greg@press.kroah.org>2005-04-18 21:57:34 -0700
commit7b558637b0efc6ab3f3ca08f0b9cc0191665e9db (patch)
tree79c5c5882b448e252d4dd3a3e8bde3c522103192 /include
parenta7a76cefc4b12bb6508afa4c77f11c2752cc365d (diff)
downloadlinux-7b558637b0efc6ab3f3ca08f0b9cc0191665e9db.tar.gz
[PATCH] debugfs: fix !debugfs prototypes
- Fix prototypes for debugfs functions (in configurations where
  debugfs is disabled).

Signed-off-by: Michal Ostrowski <mostrows@speakeasy.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>


Diffstat (limited to 'include')
-rw-r--r--include/linux/debugfs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h
index dcf847cdb5ce..a5fa6a6eede8 100644
--- a/include/linux/debugfs.h
+++ b/include/linux/debugfs.h
@@ -75,21 +75,21 @@ static inline struct dentry *debugfs_create_u8(const char *name, mode_t mode,
 
 static inline struct dentry *debugfs_create_u16(const char *name, mode_t mode,
 						struct dentry *parent,
-						u8 *value)
+						u16 *value)
 {
 	return ERR_PTR(-ENODEV);
 }
 
 static inline struct dentry *debugfs_create_u32(const char *name, mode_t mode,
 						struct dentry *parent,
-						u8 *value)
+						u32 *value)
 {
 	return ERR_PTR(-ENODEV);
 }
 
 static inline struct dentry *debugfs_create_bool(const char *name, mode_t mode,
 						 struct dentry *parent,
-						 u8 *value)
+						 u32 *value)
 {
 	return ERR_PTR(-ENODEV);
 }