Commit 7ff9057d authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Linus Torvalds
Browse files

CRIS: replace old-style member inits with designated inits



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

Signed-off-by: default avatarRobert P. J. Day <rpjday@mindspring.com>
Cc: Mikael Starvik <starvik@axis.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e30afd51
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -267,10 +267,10 @@ static void print_user_dma_lists(struct cryptocop_dma_list_operation *dma_op);


const struct file_operations cryptocop_fops = {
	owner: THIS_MODULE,
	open: cryptocop_open,
	release: cryptocop_release,
	ioctl: cryptocop_ioctl
	.owner =	THIS_MODULE,
	.open =		cryptocop_open,
	.release =	cryptocop_release,
	.ioctl =	cryptocop_ioctl
};


+4 −4
Original line number Diff line number Diff line
@@ -574,10 +574,10 @@ i2c_ioctl(struct inode *inode, struct file *file,
}

static const struct file_operations i2c_fops = {
	owner:    THIS_MODULE,
	ioctl:    i2c_ioctl,
	open:     i2c_open,
	release:  i2c_release,
	.owner =    THIS_MODULE,
	.ioctl =    i2c_ioctl,
	.open =     i2c_open,
	.release =  i2c_release,
};

int __init
+4 −4
Original line number Diff line number Diff line
@@ -51,10 +51,10 @@ int pcf8563_open(struct inode *, struct file *);
int pcf8563_release(struct inode *, struct file *);

static const struct file_operations pcf8563_fops = {
	owner: THIS_MODULE,
	ioctl: pcf8563_ioctl,
	open: pcf8563_open,
	release: pcf8563_release,
	.owner =	THIS_MODULE,
	.ioctl =	pcf8563_ioctl,
	.open =		pcf8563_open,
	.release =	pcf8563_release,
};

unsigned char