@@ -496,10 +496,10 @@ DEFINE_DEBUGFS_ATTRIBUTE(fops_u32_wo, NULL, debugfs_u32_set, "%llu\n");
496
496
* This function will return a pointer to a dentry if it succeeds. This
497
497
* pointer must be passed to the debugfs_remove() function when the file is
498
498
* to be removed (no automatic cleanup happens if your module is unloaded,
499
- * you are responsible here.) If an error occurs, % ERR_PTR(-ERROR) will be
499
+ * you are responsible here.) If an error occurs, ERR_PTR(-ERROR) will be
500
500
* returned.
501
501
*
502
- * If debugfs is not enabled in the kernel, the value % ERR_PTR(-ENODEV) will
502
+ * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
503
503
* be returned.
504
504
*/
505
505
struct dentry * debugfs_create_u32 (const char * name , umode_t mode ,
@@ -581,10 +581,10 @@ DEFINE_DEBUGFS_ATTRIBUTE(fops_ulong_wo, NULL, debugfs_ulong_set, "%llu\n");
581
581
* This function will return a pointer to a dentry if it succeeds. This
582
582
* pointer must be passed to the debugfs_remove() function when the file is
583
583
* to be removed (no automatic cleanup happens if your module is unloaded,
584
- * you are responsible here.) If an error occurs, % ERR_PTR(-ERROR) will be
584
+ * you are responsible here.) If an error occurs, ERR_PTR(-ERROR) will be
585
585
* returned.
586
586
*
587
- * If debugfs is not enabled in the kernel, the value % ERR_PTR(-ENODEV) will
587
+ * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
588
588
* be returned.
589
589
*/
590
590
struct dentry * debugfs_create_ulong (const char * name , umode_t mode ,
@@ -846,10 +846,10 @@ static const struct file_operations fops_bool_wo = {
846
846
* This function will return a pointer to a dentry if it succeeds. This
847
847
* pointer must be passed to the debugfs_remove() function when the file is
848
848
* to be removed (no automatic cleanup happens if your module is unloaded,
849
- * you are responsible here.) If an error occurs, % ERR_PTR(-ERROR) will be
849
+ * you are responsible here.) If an error occurs, ERR_PTR(-ERROR) will be
850
850
* returned.
851
851
*
852
- * If debugfs is not enabled in the kernel, the value % ERR_PTR(-ENODEV) will
852
+ * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
853
853
* be returned.
854
854
*/
855
855
struct dentry * debugfs_create_bool (const char * name , umode_t mode ,
@@ -899,10 +899,10 @@ static const struct file_operations fops_blob = {
899
899
* This function will return a pointer to a dentry if it succeeds. This
900
900
* pointer must be passed to the debugfs_remove() function when the file is
901
901
* to be removed (no automatic cleanup happens if your module is unloaded,
902
- * you are responsible here.) If an error occurs, % ERR_PTR(-ERROR) will be
902
+ * you are responsible here.) If an error occurs, ERR_PTR(-ERROR) will be
903
903
* returned.
904
904
*
905
- * If debugfs is not enabled in the kernel, the value % ERR_PTR(-ENODEV) will
905
+ * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
906
906
* be returned.
907
907
*/
908
908
struct dentry * debugfs_create_blob (const char * name , umode_t mode ,
@@ -1091,10 +1091,10 @@ static const struct file_operations fops_regset32 = {
1091
1091
* This function will return a pointer to a dentry if it succeeds. This
1092
1092
* pointer must be passed to the debugfs_remove() function when the file is
1093
1093
* to be removed (no automatic cleanup happens if your module is unloaded,
1094
- * you are responsible here.) If an error occurs, % ERR_PTR(-ERROR) will be
1094
+ * you are responsible here.) If an error occurs, ERR_PTR(-ERROR) will be
1095
1095
* returned.
1096
1096
*
1097
- * If debugfs is not enabled in the kernel, the value % ERR_PTR(-ENODEV) will
1097
+ * If debugfs is not enabled in the kernel, the value ERR_PTR(-ENODEV) will
1098
1098
* be returned.
1099
1099
*/
1100
1100
struct dentry * debugfs_create_regset32 (const char * name , umode_t mode ,
@@ -1158,4 +1158,3 @@ struct dentry *debugfs_create_devm_seqfile(struct device *dev, const char *name,
1158
1158
& debugfs_devm_entry_ops );
1159
1159
}
1160
1160
EXPORT_SYMBOL_GPL (debugfs_create_devm_seqfile );
1161
-
0 commit comments