Title: [6531] trunk/fs/debugfs/file.c: fix comment style in debugfs code
Revision
6531
Author
vapier
Date
2009-06-02 05:39:09 -0500 (Tue, 02 Jun 2009)

Log Message

fix comment style in debugfs code

Modified Paths


Diff

Modified: trunk/fs/debugfs/file.c (6530 => 6531)


--- trunk/fs/debugfs/file.c	2009-06-02 08:46:35 UTC (rev 6530)
+++ trunk/fs/debugfs/file.c	2009-06-02 10:39:09 UTC (rev 6531)
@@ -97,7 +97,7 @@
 struct dentry *debugfs_create_u8(const char *name, mode_t mode,
 				 struct dentry *parent, u8 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_u8_ro);
 	/* if there are no read bits set, make write only */
@@ -149,7 +149,7 @@
 struct dentry *debugfs_create_u16(const char *name, mode_t mode,
 				  struct dentry *parent, u16 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_u16_ro);
 	/* if there are no read bits set, make write only */
@@ -201,7 +201,7 @@
 struct dentry *debugfs_create_u32(const char *name, mode_t mode,
 				 struct dentry *parent, u32 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_u32_ro);
 	/* if there are no read bits set, make write only */
@@ -254,7 +254,7 @@
 struct dentry *debugfs_create_u64(const char *name, mode_t mode,
 				 struct dentry *parent, u64 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_u64_ro);
 	/* if there are no read bits set, make write only */
@@ -298,7 +298,7 @@
 struct dentry *debugfs_create_x8(const char *name, mode_t mode,
 				 struct dentry *parent, u8 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_x8_ro);
 	/* if there are no read bits set, make write only */
@@ -322,7 +322,7 @@
 struct dentry *debugfs_create_x16(const char *name, mode_t mode,
 				 struct dentry *parent, u16 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_x16_ro);
 	/* if there are no read bits set, make write only */
@@ -346,7 +346,7 @@
 struct dentry *debugfs_create_x32(const char *name, mode_t mode,
 				 struct dentry *parent, u32 *value)
 {
-	/*if there are no write bits set make read only */
+	/* if there are no write bits set, make read only */
 	if (!(mode & S_IWUGO))
 		return debugfs_create_file(name, mode, parent, value, &fops_x32_ro);
 	/* if there are no read bits set, make write only */
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to