search for: example_attr

Displaying 1 result from an estimated 1 matches for "example_attr".

Did you mean: example_attrs
2019 Apr 29
1
[RFC-PATCH] Introducing virtio-example.
...i->in); +} + +/* + * struct device_attribute dev_attr_virtio_buf = { + * .attr = { + * .name = "virtio_buf", + * .mode = 0644 + * }, + * .show = virtio_buf_show, + * .store = virtio_buf_store + * } + */ +static DEVICE_ATTR_RW(virtio_buf); + + +/* + * The example_attr defined above is then grouped in the struct attribute group + * as follows: + */ +struct attribute *example_attrs[] = { + &dev_attr_virtio_buf.attr, + NULL, +}; + +static const struct attribute_group example_attr_group = { + .name = "example", /* directory's name */ +...