Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f716a425 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Paul Mackerras
Browse files

[POWERPC] VIOTAPE: Use designated initializers for fops member structures.



Replace the old-style member initializers with the newer designated
initializers.

Signed-off-by: default avatarRobert P. J. Day <rpjday@mindspring.com>
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent ca747ddf
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -873,12 +873,12 @@ free_op:
}

const struct file_operations viotap_fops = {
	owner: THIS_MODULE,
	read: viotap_read,
	write: viotap_write,
	ioctl: viotap_ioctl,
	open: viotap_open,
	release: viotap_release,
	.owner =	THIS_MODULE,
	.read =		viotap_read,
	.write =	viotap_write,
	.ioctl =	viotap_ioctl,
	.open =		viotap_open,
	.release =	viotap_release,
};

/* Handle interrupt events for tape */