diff options
Diffstat (limited to 'Documentation/filesystems/configfs/configfs_example.c')
| -rw-r--r-- | Documentation/filesystems/configfs/configfs_example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/configfs/configfs_example.c b/Documentation/filesystems/configfs/configfs_example.c index 25151fd5c2c6..039648791701 100644 --- a/Documentation/filesystems/configfs/configfs_example.c +++ b/Documentation/filesystems/configfs/configfs_example.c | |||
| @@ -279,7 +279,7 @@ static struct config_item *simple_children_make_item(struct config_group *group, | |||
| 279 | 279 | ||
| 280 | simple_child = kzalloc(sizeof(struct simple_child), GFP_KERNEL); | 280 | simple_child = kzalloc(sizeof(struct simple_child), GFP_KERNEL); |
| 281 | if (!simple_child) | 281 | if (!simple_child) |
| 282 | return NULL; | 282 | return ERR_PTR(-ENOMEM); |
| 283 | 283 | ||
| 284 | 284 | ||
| 285 | config_item_init_type_name(&simple_child->item, name, | 285 | config_item_init_type_name(&simple_child->item, name, |
| @@ -366,7 +366,7 @@ static struct config_group *group_children_make_group(struct config_group *group | |||
| 366 | simple_children = kzalloc(sizeof(struct simple_children), | 366 | simple_children = kzalloc(sizeof(struct simple_children), |
| 367 | GFP_KERNEL); | 367 | GFP_KERNEL); |
| 368 | if (!simple_children) | 368 | if (!simple_children) |
| 369 | return NULL; | 369 | return ERR_PTR(-ENOMEM); |
| 370 | 370 | ||
| 371 | 371 | ||
| 372 | config_group_init_type_name(&simple_children->group, name, | 372 | config_group_init_type_name(&simple_children->group, name, |
