How is it that the leading dot on the element names is valid? (This is from a Linux device driver.)
1 2 3 4 5 6 7
|
static struct file_operations fops =
{
.open = dev_open,
.read = dev_read,
.write = dev_write,
.release = dev_release,
};
|
Last edited on
Ah...very good. Thanks, helios.