Skip to content

Commit

Permalink
slight re-ordering of struct-init
Browse files Browse the repository at this point in the history
  • Loading branch information
umlaeute committed Jan 27, 2021
1 parent e9757fe commit a5e5b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v4l2loopback.c
Original file line number Diff line number Diff line change
Expand Up @@ -2664,10 +2664,10 @@ static long v4l2loopback_control_ioctl(struct file *file, unsigned int cmd,

static const struct file_operations v4l2loopback_ctl_fops = {
// clang-format off
.owner = THIS_MODULE,
.open = nonseekable_open,
.unlocked_ioctl = v4l2loopback_control_ioctl,
.compat_ioctl = v4l2loopback_control_ioctl,
.owner = THIS_MODULE,
.llseek = noop_llseek,
// clang-format on
};
Expand Down

0 comments on commit a5e5b20

Please sign in to comment.