Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 19_sysfs/sysfs_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static ssize_t dummy_show(struct kobject *kobj, struct kobj_attribute *attr, cha
}

/**
* @brief Read callback for hello/dummy
* @brief Write callback for hello/dummy
*/
static ssize_t dummy_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buffer, size_t count) {
printk("sysfs_test - You wrote '%s' to /sys/kernel/%s/%s\n", buffer, kobj->name, attr->attr.name);
Expand Down