Commit de32b801 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] C99 initiailzers for drivers/isdn/i4l/isdn_common.c

From: "Art Haas" <ahaas@airmail.net>

Here's a small patch changing a few GNU-style initializers to C99
initiailzers.
parent d1eae390
......@@ -1707,14 +1707,14 @@ isdn_close(struct inode *ino, struct file *filep)
static struct file_operations isdn_fops =
{
owner: THIS_MODULE,
llseek: no_llseek,
read: isdn_read,
write: isdn_write,
poll: isdn_poll,
ioctl: isdn_ioctl,
open: isdn_open,
release: isdn_close,
.owner = THIS_MODULE,
.llseek = no_llseek,
.read = isdn_read,
.write = isdn_write,
.poll = isdn_poll,
.ioctl = isdn_ioctl,
.open = isdn_open,
.release = isdn_close,
};
char *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment