search for: example_attr_group

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

2019 Apr 29
1
[RFC-PATCH] Introducing virtio-example.
...tio_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, +}; + + + +//----------------------------------------------------------------------------- +// IRQ functions +//----------------------------------------------------------------...