search for: example_attrs

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

2019 Apr 29
1
[RFC-PATCH] Introducing virtio-example.
...ot;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 */ + .attrs = example_attrs, +}; + + + +//-----------------------------------------------------------------------------...